Lichen

tests/values.py

1044:c8149a01d932
5 months ago Paul Boddie Merged changes from the trailing-data branch. value-replacement
     1 def test(a):     2     a = a - 1.0     3     return a     4      5 x = 2.0     6 print test(x)               # 1.0     7 print x                     # 2.0