Mercurial > repos > tabletprog
view samples/fib.tp @ 370:57d78a0af132
Add code to socket module to allow listening for incoming connections
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Wed, 12 Aug 2015 19:13:31 -0700 |
parents | 3a169ebb3224 |
children |
line wrap: on
line source
#{ fib <- :n { if: n < 2 { 1 } else: { (fib: n-1) + (fib: n-2) } } main <- { print: (string: (fib: 30)) . "\n" } }