Add examples/
This commit is contained in:
parent
5c02a9f858
commit
a77da74da5
5
examples/fib.ppp
Normal file
5
examples/fib.ppp
Normal file
@ -0,0 +1,5 @@
|
||||
a: (int, int) = (0, 1);
|
||||
for i in range(0, 100) {
|
||||
a = (a[1], a[0] + a[1]);
|
||||
print(int_to_str(a[0])+"\n");
|
||||
}
|
1
examples/hello.ppp
Normal file
1
examples/hello.ppp
Normal file
@ -0,0 +1 @@
|
||||
print("Hello, World!\n");
|
Loading…
Reference in New Issue
Block a user