Category | Native procedure | |||
Format | (wait time) | |||
Parameters |
|
|||
Description | waits waits for time milliseconds. time must be positive or an error results. | |||
R4RS Compliance | LispMe extension | |||
Examples |
|
Category | Library procedure | |||
Format | (wait-pen) | |||
Parameters | none | |||
Description | wait-pen waits for a pen tap. When the pen event occurs, the pen coordinates are consed into a pair (x . y), which is returned. Both x and y coordinates are in the range [0..160]. | |||
R4RS Compliance | LispMe extension | |||
Examples |
|
Category | Special form (Compiler extension) | ||||
Format | (while cond expr1 ...) | ||||
Parameters |
|
||||
Description | while evaluates the expression cond If this evaluates to true, the expressions expri are evaluated (for effect only) in sequence and the loop starts again. Otherwise, the loop is terminated and #f is returned. | ||||
R4RS Compliance | LispMe extension | ||||
Examples |
|
Category | Native procedure | ||||||
Format | (write obj [outport]) | ||||||
Parameters |
|
||||||
Description | write prints an object to the output field or to the output port outport in machine-readable format, i.e. strings and chars are escaped as described here. A space character is appended after each object written. write returns obj. For related information, see display and newline. | ||||||
R4RS Compliance | Full | ||||||
Examples |
|
Category | Deprecated use dm-insert-rec or dm-update-rec instead | ||||||
Format | (write-record dbname recnum obj) | ||||||
Parameters |
|
||||||
Description | write-record opens the Pilot database named
dbname (case-sensitive!). recnum
must be a valid index for the database. If obj
is a string, a new record (filled with the string's contents)
is tried to be inserted into the database at the position
recnum and the actual insertion position is
returned as an integer. If obj is the value false, the record with index recnum is (permanently) deleted from the database (using DmRemoveRecord, not just setting the deleted attribute) and #t is returned on success. If the database or the index doesn't exist or any other error occurs, #f is returned in both cases. Warning: Don't try to create records for other apps when you're not absolutely sure about their data layout. Those apps often assume valid data in their databases and can crash badly otherwise! |
||||||
R4RS Compliance | LispMe extension. | ||||||
Examples |
|
Back to index A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Other