5 lines
72 B
Gleam
5 lines
72 B
Gleam
import gleam/string
|
|
|
|
pub fn main() {
|
|
echo string.repeat("hello", 3)
|
|
}
|