This repository has been archived on 2026-03-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
v2/test.sols

16 lines
107 B
Plaintext
Raw Permalink Normal View History

2026-02-28 11:27:45 +11:00
a = 0
b = 1
n = 92
2026-02-20 09:35:50 +11:00
2026-02-28 11:27:45 +11:00
i = 0
2026-02-16 18:34:03 +11:00
2026-02-28 11:27:45 +11:00
while i != n {
temp = a + b
a = b
b = temp
2026-02-28 11:27:45 +11:00
i = i + 1
2026-02-28 10:56:00 +11:00
}
2026-02-28 11:27:45 +11:00
puts a