chore: move scripts into subfolders

This commit is contained in:
2026-02-06 20:55:53 +01:00
parent 03e3c3f807
commit 14341471b7
18 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
fun fib(n) {
if n < 0 {
return null
} else if n == 0 or n == 1 {
return n
}
return fib(n - 2) + fib(n - 1)
}
print(fib(10))

View File

@@ -4,7 +4,7 @@ from src.pebble import Pebble
def main(): def main():
path: Path = Path("examples/16_break_continue.peb") path: Path = Path("examples/basic/16_break_continue.peb")
Pebble.run_file(path) Pebble.run_file(path)