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


apl>  p # 2 3 5 7


apl>  L # e # 3 4 R I 12

1  2  3  4
5  6  7  8
9 10 11 12


apl>  L # x # 3 4 R 'ABCDEFGHIJKL'

ABCD
EFGH
IJKL


apl>" <--- Catenate ---------------------------------------------------->


apl>  p , I 2

2 3 5 7 1 2

apl>  't' , 'his'

this

apl>" <--- Laminate ---------------------------------------------------->


apl>  p , [.5] p

2 3 5 7
2 3 5 7

apl>" <--- Transpose --------------------------------------------------->


apl>  2 1 T x

AEI
BFJ
CGK
DHL

apl>  1 1 T e

1 6 11

apl>  T e

1 5  9
2 6 10
3 7 11
4 8 12

apl>)off

[ RETURN TO DIRECTORY ]