From 873b2b58f9772624abc41874cd5ad4592e820683 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Sun, 27 Aug 2017 20:59:01 -0700 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a85fd3b..98cc2a6 100755 --- a/README.md +++ b/README.md @@ -465,7 +465,7 @@ keyin = @keyin2plus // address-of keyin2plus function key = keyin() ``` -Lambda functions are anonymous functions that can be used to return a value (or multiple values). They can be used as function pointers to routines that need a quick and dirty expression. They are written an '&' (a poor man's lambda symbol) followed by parameters in parentheses, and the resultant expression. There are no local variables allowed. +Lambda functions are anonymous functions that can be used to return a value (or multiple values). They can be used as function pointers to routines that need a quick and dirty expression. They are written as '&' (a poor man's lambda symbol) followed by parameters in parentheses, and the resultant expression. There are no local variables allowed. ``` word result @@ -493,7 +493,7 @@ if ^pushbttn3 < 128 key = $CE // N fin else - key = key | $E0 + key = key | $E0 fin ``` @@ -503,7 +503,7 @@ The `when`/`is`/`otherwise`/`wend` statement is similar to the `if`/`elsif`/`els when keypressed is keyarrowup cursup - breaking + break is keyarrowdown cursdown break