diff --git a/README.md b/README.md index 7f637cf..1a08e97 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ FCL is the programming language of an Android app called Forth Calculator. It is ```forth : fib ( n1 n2 -- n1 n2 n3 ) 2dup + ; -: nfib ( n -- .. ) -> n ( local variable ) +: nfib ( n -- n* ) -> n ( local variable ) 0 1 { fib } n times ; ( quotation ) ``` @@ -103,7 +103,7 @@ For example: ##### while loop ```forth -begin .. while repeat +begin while repeat ``` For example: ```forth