RosettaCodeData/Task/Repeat-a-string/Ceylon/repeat-a-string.ceylon

4 lines
56 B
Ceylon

shared void repeatAString() {
print("ha".repeat(5));
}