Update README.md

This commit is contained in:
Attila Magyar 2021-06-19 20:58:54 +02:00 committed by GitHub
parent 5054b1c557
commit cbb0862d7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,2 +1,9 @@
# fcl
Forth Calculator's Language
# FCL - Forth Calculator's Language
FCL is the programming language of an Android app called Forth Calculator. It is a Forth dialect with optional local variables, complex data structures, quotations and Java interoperability.
```forth
: fib ( n1 n2 -- n1 n2 n3 ) 2dup + ;
: nfib ( n -- .. ) -> n 0 1 n { fib } times ;
```