Andreas Evensen
Results
2
comments of
Andreas Evensen
You can circumvent this by stating that the argument is a struct ```v struct Args { x int = 0 y f32 = 0.0 p &Person = unsafe { nil...
Yep something like this would work ```v type Arg = f32 | int | Person | string fn Hello(arg1 Arg, arg2 Arg, arg3 Arg, arg4 Arg) {} ```