RosettaCodeData/Task/Repeat-a-string/J/repeat-a-string.j

9 lines
269 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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