about summary refs log tree commit diff stats
path: root/readme.txt
diff options
context:
space:
mode:
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt17
1 files changed, 15 insertions, 2 deletions
diff --git a/readme.txt b/readme.txt index 169c948..fd11f09 100644 --- a/readme.txt +++ b/readme.txt
@@ -20,8 +20,8 @@ you can set up a repl of lam to test it out:
20 20
21all of lua's math.* functions are available, as well as 21all of lua's math.* functions are available, as well as
22 22
23- + 23- +, *, /, -
24- * (more math functions to come!) 24- =, <, >, <=, >=
25- null? 25- null?
26- number? 26- number?
27- symbol? 27- symbol?
@@ -38,11 +38,24 @@ and special forms
38- define 38- define
39- lambda 39- lambda
40 40
41plus, some special lam functions:
42
43- luatype (the lua types of a value)
44- type (the lam type of the value)
45
41lam limitations 46lam limitations
42--------------- 47---------------
43 48
44- lam just has numbers and operations on them 49- lam just has numbers and operations on them
45- uh, and symbols. and lists. and lambdas and environments. 50- uh, and symbols. and lists. and lambdas and environments.
46 51
52todo
53----
54
55- move schemestr from repl into pp and expand (lua/lam pp, etc)
56- add more datatypes (strings, anyone?!)
57- numeric tower (oof) (at least exact/inexact numbers)
58- ....
59
47--------------------------- 60---------------------------
48contributions/help WELCOME! 61contributions/help WELCOME!