@@ -13,9 +13,13 @@ } # This should work tcc4tcl::cproc test3 {int i} int { return(i+42); } +# Multiple arguments +tcc4tcl::cproc add {int a int b} int { return(a+b); } + puts [test 1] puts [test1 1] puts [test3 1] puts [::bob::test1 1] +puts [add [test 1] 1]