Files
why3/plugins/python/test.py
2017-01-29 15:52:12 +01:00

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: