Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

CHICKEN

< >

CHICKEN is an open source programming language created in 2000 by Felix Winkelmann.

#762on PLDB 24Years Old
Download source code:
git clone https://code.call-cc.org/git/chicken-core.git
HomepageSource CodeWikipediaDocs

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...


Example from the web:
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!
- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements Part of the World Wide Scroll