8 lines
269 B
Text
8 lines
269 B
Text
5 # '*' NB. repeat each item 5 times
|
|
*****
|
|
5 # 'ha' NB. repeat each item 5 times
|
|
hhhhhaaaaa
|
|
5 ((* #) $ ]) 'ha' NB. repeat array 5 times
|
|
hahahahaha
|
|
5 ;@# < 'ha' NB. using boxing to treat the array as a whole
|
|
hahahahaha
|