Artifact Content
Not logged in

Artifact 2f68238d12815ac318b07ee0c308bbeae371710d


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