Pipa is still under development
Would you like to stay updated on the development of Pipa Language and potentially contribute to the project? If so, we encourage you to sign up for our mailing list and follow us on Github.
fn main(): i32 { return fib(13); } fn fib(n: i32): i32 { if n <= 1 { return n; } return fib(n - 1) + fib(n - 2); }
Would you like to stay updated on the development of Pipa Language and potentially contribute to the project? If so, we encourage you to sign up for our mailing list and follow us on Github.
First, you need to clone and build the Pipa compiler (pipac):
git clone https://git.sr.ht/~johnnyrichard/pipac make all
Next, look at the examples folder and build them with pipa cli
./pipa examples/main.pipa