CHICKEN is an open source programming language created in 2000 by Felix Winkelmann.
#766on PLDB | 24Years Old |
git clone https://code.call-cc.org/git/chicken-core.git
Chicken (stylized as CHICKEN) is a programming language, specifically a compiler and interpreter which implement a dialect of the programming language Scheme, and which compiles Scheme source code to standard C. It is mostly R5RS compliant and offers many extensions to the standard. The newer R7RS standard is supported through an extension library. Read more on Wikipedia...
A glimpse of CHICKEN
;;; hello-world.scm
(print "Hello, world!")
;;; Running it interpreted:
$ csi -s hello-world.scm
Hello, world!
;;; Compiling and running the executable binary:
$ csc hello-world.scm
$ ./hello-world
Hello, world!