-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ltoddy
committed
May 22, 2018
1 parent
d097dda
commit c9a5c36
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
## v:0.1.0 : 2018.05.23 (May 23, 2018) | ||
|
||
### control structure and built-in process | ||
* interaction environment | ||
* creation of a new environments | ||
* eval form | ||
* apply form | ||
* "and" and "or" forms | ||
* let form | ||
* cond form | ||
* begin form | ||
* lambda | ||
* if form(using tail call for consequent or alternative) | ||
|
||
### primitive procedures | ||
* null? | ||
* boolean? | ||
* symbol? | ||
* integer? | ||
* char? | ||
* string? | ||
* pair? | ||
* procedure? | ||
* number->string | ||
* string->number | ||
* symbol->string | ||
* string->symbol | ||
* char->integer | ||
* integer->char | ||
* \+ | ||
* \- | ||
* \* | ||
* / | ||
* quotient | ||
* remainder | ||
* = | ||
* < | ||
* \> | ||
* cons | ||
* car | ||
* cdr | ||
* set-car! | ||
* set-cdr! | ||
* list | ||
* eq? | ||
|
||
### basic type | ||
|
||
* boolean | ||
* integer | ||
* character | ||
* string | ||
* pair(list) | ||
* symbol(quote) | ||
* primitive procedure | ||
* compound procedure | ||
* the empty list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters