diff options
Diffstat (limited to 'TUTORIAL.md')
-rw-r--r-- | TUTORIAL.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TUTORIAL.md b/TUTORIAL.md index 74384b1..1ba6642 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -89,7 +89,7 @@ false : bool Values can be bound to variables using the let expression. ```console > (let x 1) -Bind saved +x saved > x 1 : int ``` @@ -119,11 +119,11 @@ and a function for checking if a integer is between two others. ```console > (let ++ (fn a int int (+ a 1))) -Bind saved +++ saved > (++ 1) 2 : int > (let between (fn (a b c) (int int int) bool (and (< b c) (> b a)))) -Bind saved +between saved > (between 1 2 3) true : bool > (between 1 0 3) |