11 lines
216 B
Text
11 lines
216 B
Text
# Repeat text function
|
|
fn.println(fn.repeatText(5, ha))
|
|
# Output: hahahahaha
|
|
|
|
# Mul operator
|
|
fn.println(parser.op(ha * 5))
|
|
# Output: hahahahaha
|
|
|
|
# Mul operator function
|
|
fn.println(fn.mul(ha, 5))
|
|
# Output: hahahahaha
|