RosettaCodeData/Task/Loop-over-multiple-arrays-s.../TXR/loop-over-multiple-arrays-s...

12 lines
140 B
Plaintext

$ txr -c '@(bind a ("a" "b" "c"))
@(bind b ("A" "B" "C"))
@(bind c ("1" "2" "3"))
@(output)
@ (repeat)
@a@b@c
@ (end)
@(end)'
aA1
bB2
cC3