An actual command line tool to run pork programs.

This commit is contained in:
2023-08-21 23:08:56 -07:00
parent e12b51e8a7
commit 1445490770
13 changed files with 200 additions and 150 deletions

View File

@ -7,4 +7,5 @@ fib = { n in
else fib(n - 1) + fib(n - 2)
}
main = { in fib(20) }
result = fib(20)
println(result)