function bar() print( "bar" ); endfunction function foo( a := bar(), b := "blah" ) print( a + " " + b ); endfunction foo();