Artifact Content
Not logged in

Artifact d3a50b6eb8c63c2d4c25051ff8b26bc5b555218a


     1  @@s(x){x};
     2  @s "+" = fun(x, y) {@value(
     3  	@s(x) - @s(y)
     4  )};
     5  
     6  print( 1 + 2 );
     7  print( @s(1 + 2) );