minion/hello.mn

12 lines
125 B
Text
Raw Permalink Normal View History

2022-06-14 23:50:45 +02:00
func: hello(string: x) = {
stdout: out = x
}
2022-06-15 17:04:24 +02:00
string: name = {
This is a multi line string
Hello world
}
2022-06-14 23:50:45 +02:00
hello(name)