8 lines
135 B
Nim
8 lines
135 B
Nim
|
|
import strutils
|
||
|
|
|
||
|
|
# Repeat a char.
|
||
|
|
echo repeat('a', 5) # -> "aaaaa".
|
||
|
|
|
||
|
|
# Repeat a string.
|
||
|
|
echo repeat("ha", 5) # -> "hahahahaha".
|