Skip to content

Instantly share code, notes, and snippets.

@jots
Created April 26, 2014 20:03
Show Gist options
  • Save jots/11329556 to your computer and use it in GitHub Desktop.
Save jots/11329556 to your computer and use it in GitHub Desktop.
#!strongSpaces
import jester, strtabs, htmlgen, strutils, os
proc fib(n: int): int =
if n < 2:
result = n
else:
result = fib(n-1) + fib(n-2)
get "/fib/?":
# no work:
# resp $fib(40)
resp intToStr(fib(40))
run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment