mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
12 lines
141 B
Python
12 lines
141 B
Python
|
|
a = 0
|
|
b = 1
|
|
while b < 100:
|
|
print(a)
|
|
b = a+b
|
|
a = b-a
|
|
|
|
# Local Variables:
|
|
# compile-command: "make -C ../.. && why3 ide test.py"
|
|
# End:
|