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