7 lines
106 B
Text
7 lines
106 B
Text
|
|
/* NetRexx */
|
||
|
|
|
||
|
|
options replace format comments java symbols binary
|
||
|
|
|
||
|
|
parse ask a b .
|
||
|
|
say a '+' b '=' a + b
|