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