function foobar {
.@first_argument$ = getarg(0); // get the value of the first argument passed to foobar()
.@output$ = "Hello " + .@first_argument$; // add the value of the first argument to "Hello"
return .@output$; // exit the function, while returning the value of .@output$
}
mes(foobar("world")); // Hello World