RosettaCodeData/Task/Repeat-a-string/Julia/repeat-a-string.julia
2018-06-22 20:57:24 +00:00

4 lines
100 B
Text

@show "ha" ^ 5
# The ^ operator is really just call to the `repeat` function
@show repeat("ha", 5)