4 lines
209 B
Text
4 lines
209 B
Text
-- Here is an alternative method for "Repeat a string"
|
|
include std/sequence.e
|
|
printf(1,"Here is the repeated string: %s\n", {repeat_pattern("ha",5)})
|
|
printf(1,"Here is another: %s\n", {repeat_pattern("*",5)})
|