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