7 lines
134 B
Text
7 lines
134 B
Text
|
|
q)sayHi:{-1"Hello ",x;}
|
||
|
|
q)callFuncWithParam:{x["Peter"]}
|
||
|
|
q)callFuncWithParam sayHi
|
||
|
|
Hello Peter
|
||
|
|
q)callFuncWithParam[sayHi]
|
||
|
|
Hello Peter
|