importunittestprocconcat(a,b):string=result=$a&$bblock:# if proc param types are not supplied, the params are assumed to be genericcheckconcat(1,"test")=="1test"checkconcat(1,20)=="120"checkconcat("foo","bar")=="foobar"block:# explicit param types can still be specifiedcheckconcat[cstring,cstring]("x","y")=="xy"