mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 13:11:32 +00:00
288 B
288 B
pork
A small BBQ language.
Very WIP. Like VERY.
/* fibonacci sequence */
fib = { n in
if n == 0
then 0
else if n == 1
then 1
else fib(n - 1) + fib(n - 2)
}
result = fib(20)
println(result)
Usage
./gradlew -q run --args 'run examples/fib.pork'