summary refs log tree commit diff stats
path: root/raku/hello-world/HelloWorld.rakumod
blob: a914d42a9febafad42ebd3916699f7f0ac3d39a2 (plain) (blame)
1
2
3
4
5
unit module HelloWorld;

sub hello is export {
    return "Hello, World!";
}