11 lines
125 B
Text
11 lines
125 B
Text
func: hello(string: x) = {
|
|
stdout: out = x
|
|
}
|
|
|
|
string: name = {
|
|
This is a multi line string
|
|
Hello world
|
|
}
|
|
|
|
|
|
hello(name)
|