tiny beautification

This commit is contained in:
2021-02-17 00:10:39 +01:00
parent fb23b20473
commit 4a867d3c22
2 changed files with 10 additions and 10 deletions

View File

@@ -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!
```