5 lines
96 B
Text
5 lines
96 B
Text
"$*"(s, n) := apply(sconcat, makelist(s, n))$
|
|
infix("$*")$
|
|
|
|
"abc" $* 5;
|
|
/* "abcabcabcabcabc" */
|