Metropoli BBS
VIEWER: sam249.txt MODE: TEXT (ASCII)
apl>" <-APL2-------------------- sam249.txt ---------------------------->


apl>" <- expand (\) ---------------------------------------------------->


apl>1 0 1 0 0 1 \ 1 2 3

1 0 2 0 0 3

apl>1 0 1 0 0 1 \ 'abc'

a b  c

apl>L#h#(1 2) (3 4 5) 6

 1 2  3 4 5  6 


apl>1 0 1 1 0 \ h

 1 2  0 0  3 4 5  6  0 0 

apl>L#k#1 (2 3) (4 5 6)

 1  2 3  4 5 6 


apl>1 0 1 1 0 \ k

 1 0  2 3  4 5 6  0 

apl>r # 1 2 3 4 'a' 4 'c' 2 6


apl>r#r, 'x' 7 'y' 1 'd' 'e'


apl>L#r#5 4Rr,5 'f' 'g' 'h' 'i'

 1 2 3 4 
 a 4 c 2 
 6 x 7 y 
 1 d e 5 
 f g h i 


apl>1 0 0 1 1 0 1 \ r

 1 0 0 2 3 0 4 
 a     4 c   2 
 6 0 0 x 7 0 y 
 1 0 0 d e 0 5 
 f     g h   i 

apl>1 0 0 \ 5

5 0 0

apl>L#s#3 1 R 7 8 9

7
8
9


apl>0 1 0 \ s

0 7 0
0 8 0
0 9 0

apl>1 0 0 1 0 1 \ w # 7 8 9

7 0 0 8 0 9

apl>1 -2 1 -1 1 / w

7 0 0 8 0 9

apl>L#z#(I0)\2 0R0

.


apl>Rz

2 0

apl>L#b#1 0 1 \ 0 2R0

.


apl>Rb

0 3

apl>L#a#(I0)\,[I0]6 7 8

.


apl>Ra

3 0

apl>L#c#0 0 0 \ 2 0 R 0

0 0 0
0 0 0


apl>Rc

2 3

apl>m#'abc'


apl>(1 0 1 0 1 \ m)#I5


apl>m

1 3 5

apl>L#n#2 3RI6

1 2 3
4 5 6


apl>L#t#2 4R'abcdefgh'

abcd
efgh


apl>(1 0 1 1\n)#t


apl>n

acd
egh

apl>)off

[ RETURN TO DIRECTORY ]