minion/hello.mn
2022-06-15 18:08:41 +02:00

11 lines
125 B
Text

func: hello(string: x) = {
stdout: out = x
}
string: name = {
This is a multi line string
Hello world
}
hello(name)