Category | Library procedure | ||||||
Format | (negative? num) | ||||||
Parameters |
|
||||||
Description | negative? returns #t, if num is negative. Otherwise it returns #f. See also positive? and zero?. | ||||||
R4RS Compliance | Full | ||||||
Examples |
|
Category | Native procedure | |||
Format | (new-serial?) | |||
Parameters | None | |||
Description | new-serial? returns #t, if the New Serial Manager is available on your Palm (usually with PalmOS 3.3 or better). Otherwise it returns #f. See LispMe serial interface for more information. | |||
R4RS Compliance | LispMe extension | |||
Examples |
|
Category | Native procedure | |||
Format | (newline [outport]) | |||
Parameters |
|
|||
Description | newline prints a linefeed character to the output field or to the output port outport. newline returns the line feed character. For related information, see display and write. | |||
R4RS Compliance | Full | |||
Examples |
|
Category | Primitive procedure | ||||||
Format | (none? obj) | ||||||
Parameters |
|
||||||
Description | none? returns #t for #n and #f for any other object. | ||||||
R4RS Compliance | LispMe extension | ||||||
Examples |
|
Category | Primitive procedure | |||||||||
Format | (not obj) | |||||||||
Parameters |
|
|||||||||
Description | not returns #t if obj is false, otherwise it returns #t. Remember that in LispMe () and #f are distinct objects, so not is not the same procedure as null?. | |||||||||
R4RS Compliance | Full | |||||||||
Examples |
|
Category | Primitive procedure | |||||||||
Format | (null? obj) | |||||||||
Parameters |
|
|||||||||
Description | null? returns #t for the empty list () and #f for any other object. Remember that in LispMe () and #f are distinct objects, so null? is not the same procedure as not. | |||||||||
R4RS Compliance | Full | |||||||||
Examples |
|
Category | Primitive procedure | ||||||||||||
Format | (number? obj) | ||||||||||||
Parameters |
|
||||||||||||
Description | number? returns #t for integer, real and complex numbers and #f for any other object. | ||||||||||||
R4RS Compliance | Full | ||||||||||||
Examples |
|