mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Explicit object type
This commit is contained in:
parent
4676b376ba
commit
8a14013a05
1 changed files with 3 additions and 3 deletions
|
@ -163,7 +163,7 @@ Return the command line arguments to the program as a list of strings.
|
|||
(cons a b)
|
||||
Create a new pair with its car field set to `a` and its cdr field set to `b`.
|
||||
#delete-file
|
||||
(delete-file filename)
|
||||
(delete-file string)
|
||||
Delete a file with the given filename.
|
||||
#eof-object?
|
||||
(eof-object? obj)
|
||||
|
@ -185,8 +185,8 @@ Raises an exception by calling `raise` with the given message and objects.
|
|||
(exit obj)
|
||||
Exit the program.
|
||||
#file-exists?
|
||||
(file-exists? filename)
|
||||
Determine if the given file exists.
|
||||
(file-exists? string)
|
||||
Determine if the file with filename `string` exists.
|
||||
#integer->char
|
||||
(integer->char x)
|
||||
Return a character with the same value as the given integer.
|
||||
|
|
Loading…
Add table
Reference in a new issue