Add fib test

This commit is contained in:
2025-12-20 16:27:54 +11:00
parent ce058c8f9c
commit 3c66df5be0

15
tests/fib.sols Normal file
View File

@@ -0,0 +1,15 @@
a = 0
b = 1
n = 92
i = 0
while i != n {
temp = a + b
a = b
b = temp
i = i + 1
}
puts a