mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-09-17 08:21:30 +00:00
62ba662a911d5dc67aafd4c2c6313eadf7b274ee
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'
Languages
Kotlin
100%