4 lines
69 B
Text
4 lines
69 B
Text
|
|
let string_repeat s n =
|
||
|
|
Array.fold_left (^) "" (Array.make n s)
|
||
|
|
;;
|