3 lines
79 B
Text
3 lines
79 B
Text
let string_repeat s n =
|
|
String.concat "" (Array.to_list (Array.make n s))
|
|
;;
|