Snigl

From Esolang
Jump to navigation Jump to search
This article is not detailed enough and needs to be expanded. Please help us by adding some more information.

Snigl logo.png

Snigl Snigl is a dynamic language aiming for functional simplicity and tight C integration.

   func: fib-rec (0) _
   func: fib-rec (1) _
   func: fib-rec (Int) (-- dup fib-rec swap -- fib-rec +)
   20 fib-rec
   
 [6765]