apl>" <-APL2-------------------- sam209.txt ---------------------------->
apl>" <-----------------------------misc-------------------------------->
apl>`O(2 3) ((4 5 6) 7)
4 5 6 7 2 3
apl>''''
'
apl>'can''t'
can't
apl>'3+4'
3+4
apl>'one two three'
one two three
apl>3 4 5 6
3 4 5 6
apl>'f' 'a' 'c' 'e'
face
apl>2 6 'd' 4 'w'
2 6 d 4 w
apl>x#6
apl>2 3 x 36
2 3 6 36
apl>1 2 `= 1 (2)
1
apl>1 (2) `= (1) 2
1
apl>(1) 2 `= (1) (2)
1
apl>(1) (2) `= 1 2
1
apl>2 'x' 8 `= 2'x'8
1
apl>2'x'8 `= 2('x')8
1
apl>2('x')8 `= (2('x')(8))
1
apl>'face' `= ('f' 'a' 'c' 'e')
1
apl>'f''a''c''e'
f'a'c'e
apl>(1 2 3)(4 5 6)(7 8)
1 2 3 4 5 6 7 8
apl>'red' 'white' 'blue'
red white blue
apl>(9 7 4)'box'(7 'f' 9 'g')
9 7 4 box 7 f 9 g
apl>('up' 'up')'and' 'away'
up up and away
apl>v#3 5 6
apl>'o' v 'x'
o 3 5 6 x
apl>)off