Update README.md

This commit is contained in:
Attila Magyar 2021-06-19 21:01:26 +02:00 committed by GitHub
parent 76007fe61a
commit 7d42c82982
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,6 @@ 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
0 1 n { fib } times ;
: nfib ( n -- .. ) -> n ( local var n )
0 1 n { fib } times ; ( quotation )
```