Differences From Artifact [2f68238d12815ac3]:
- File
sample/plusminus.pmy
- 2010-11-20 14:04:44 - part of checkin [8e3db9ef20] on branch trunk - macro worked! (user: kinaba) [annotate]
To Artifact [d3a50b6eb8c63c2d]:
- File
sample/plusminus.pmy
- 2010-11-23 07:42:13 - part of checkin [6ac127ddd0] on branch trunk - new evaluator (user: kinaba) [annotate]
1 1 @@s(x){x};
2 -@s "+" = fun(x, y) {@v(
2 +@s "+" = fun(x, y) {@value(
3 3 @s(x) - @s(y)
4 4 )};
5 5
6 6 print( 1 + 2 );
7 7 print( @s(1 + 2) );