Skip to content

Commit

Permalink
change log: v:0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ltoddy committed May 22, 2018
1 parent d097dda commit c9a5c36
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
57 changes: 57 additions & 0 deletions CHANGELOG.md
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
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,12 @@ ok
### Document:

[Here](docs/README.md)

### [CHANGELOG](./CHANGELOG.md):

#### v:0.1.0 : 2018.05.23 (May 23, 2018)

- control structure and built-in process
- primitive procedures
- basic type

0 comments on commit c9a5c36

Please sign in to comment.