Lichen

tests/values.py

1025:d84d7a6f3c87
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