tiny beautification
This commit is contained in:
10
doc/Doc.md
10
doc/Doc.md
@@ -14,14 +14,14 @@
|
||||
|`(while cond ...)`|`while` evaluates only its cond argument.|`while` evaluates its condition expression every iteration before running. If it is true, it continues to evaluate every expression in the `while` body. It then returns the last value evaluated.|
|
||||
|
||||
|
||||
## Examples
|
||||
## Library
|
||||
|
||||
#### Using the binary
|
||||
|
||||
Run wisp in interactive mode:
|
||||
Run ml in interactive mode:
|
||||
|
||||
```bash
|
||||
$ ./wisp
|
||||
$ ./ml
|
||||
>>> (print "Hello world!")
|
||||
Hello world!
|
||||
=> "Hello world!"
|
||||
@@ -30,13 +30,13 @@ Hello world!
|
||||
Interpret a file:
|
||||
|
||||
```bash
|
||||
$ ./wisp -f "examples/hello_world.lisp"
|
||||
$ ./ml -f "examples/hello_world.lisp"
|
||||
Hello world!
|
||||
```
|
||||
|
||||
Interpret from command line argument:
|
||||
|
||||
```bash
|
||||
$ ./wisp -c '(print "Hello world!")'
|
||||
$ ./ml -c '(print "Hello world!")'
|
||||
Hello world!
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user