From c5e11a61adadbcc81d8f5c8563a85d65b483065d Mon Sep 17 00:00:00 2001 From: Attila Magyar Date: Sun, 20 Jun 2021 01:03:39 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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