22 lines
293 B
Text
22 lines
293 B
Text
|
|
x =: 'lions, tigers, and'
|
||
|
|
y =: 'bears, oh my!'
|
||
|
|
z =: '(from the "Wizard of OZ")'
|
||
|
|
'x y z'=: /:~".'x;y;<z'
|
||
|
|
x
|
||
|
|
(from the "Wizard of OZ")
|
||
|
|
y
|
||
|
|
bears, oh my!
|
||
|
|
z
|
||
|
|
lions, tigers, and
|
||
|
|
|
||
|
|
x =: 77444
|
||
|
|
y =: -12
|
||
|
|
z =: 0
|
||
|
|
'x y z'=: /:~".'x;y;<z'
|
||
|
|
x
|
||
|
|
_12
|
||
|
|
y
|
||
|
|
0
|
||
|
|
z
|
||
|
|
77444
|