RosettaCodeData/Task/Repeat-a-string/Julia/repeat-a-string.jl
2024-10-16 18:07:41 -07:00

4 lines
100 B
Julia

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