thought I’d try the showcase example in Raku (https://raku.org), so this Gleam
import gleam/io
pub fn main() {
io.println("hello, friend!")
}
becomes this Raku say “hello, friend!”
well maybe you really want to have a main() so you can pass in name from the command line #!/usr/bin/env raku
sub MAIN($name) {
say "hello, $name!”
}
Raku looks sweet, but what is the point of this comparison? :)