10 lines
94 B
Text
10 lines
94 B
Text
func: hello(string: x) = {
|
|
stdout: out = x
|
|
}
|
|
|
|
string: name
|
|
name = hej hopp
|
|
|
|
|
|
hello(name)
|
|
|