koderrr

Results 1 issues of koderrr

``` function testfunc($str1, $str2) { 'calling testfunc' $str1 $str2 } function testfunc2 { Param([string]$str1, [string]$str2) 'calling testfunc2' $str1 $str2 } testfunc 'foo' 'bar' testfunc2 'foo' 'bar' ``` Output: ``` calling...