newLISP Fan Club

Forum => newLISP and the O.S. => Topic started by: kosh on December 12, 2009, 01:40:25 PM

Title: format bugs, etc.
Post by: kosh on December 12, 2009, 01:40:25 PM
## 1. `format' function returns a value different from `printf()'


(format "%#05x" 10)
;-> ERR: problem in format string in function format : "%#05x"

(import "libc.so.6" "printf")
(printf "%#05x" 10)
;-> 0x00a
;=> 5

(format "%c" 0)
; => "" (empty string)

(printf "%c" 0)
;-> ^@ ("00")
;=> 1


## 2. `(rand 0)' returns not integer value.
(rand 0)
;=> true


---

kosh
Title: Re: format bugs, etc.
Post by: cormullion on December 12, 2009, 01:52:34 PM
(rand 0)'s different behaviour is  well-documented...



//http://en.wikibooks.org/wiki/Introduction_to_newLISP/Working_with_numbers#Random_numbers

//http://www.newlisp.org/downloads/newlisp_manual.html#rand



and  it's probably best that it doesn't return a number otherwise you might never notice that you asked for a random integer between 0 and -1... :)
Title: Re: format bugs, etc.
Post by: kosh on December 12, 2009, 03:12:07 PM
Quote(rand 0)'s different behaviour is well-documented...

mmm... I should check the documents.

sorry for misread the situation.
Title: Re: format bugs, etc.
Post by: Lutz on December 13, 2009, 06:09:34 AM
newLISP 'format' and C printf() are simply differemt things and on purpose. The C function returns the number of characters written, the 'format' function returns the the formatted string.



The format characters for 'format' are only a subset of what can be used in C and there are slight differences how integer precision is handled.



See the documentation for 'format' for details.