Differences From Artifact [5278c04aa82ef1ff]:
- File
sample/plusminus.pmy
- 2010-11-09 15:19:20 - part of checkin [68546f3e9f] on branch trunk - several samples (user: kinaba) [annotate]
To Artifact [2f68238d12815ac3]:
- File
sample/plusminus.pmy
- 2010-11-20 14:04:44 - part of checkin [8e3db9ef20] on branch trunk - macro worked! (user: kinaba) [annotate]
1 +@@s(x){x};
1 2 @s "+" = fun(x, y) {@v(
2 3 @s(x) - @s(y)
3 4 )};
4 5
5 6 print( 1 + 2 );
6 7 print( @s(1 + 2) );