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