4 lines
100 B
Julia
4 lines
100 B
Julia
@show "ha" ^ 5
|
|
|
|
# The ^ operator is really just call to the `repeat` function
|
|
@show repeat("ha", 5)
|