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