diff --git a/tests/should_succeed/main_funny_arg_names.jou b/tests/should_succeed/main_funny_arg_names.jou index 5a9a8336..7322f8ef 100644 --- a/tests/should_succeed/main_funny_arg_names.jou +++ b/tests/should_succeed/main_funny_arg_names.jou @@ -1,6 +1,6 @@ import "stdlib/io.jou" -# Usually the args are named "argc" and "argv" but this is also acceptable +# Usually the args are named "argc" and "argv", but you can name them whatever you want. def main(lol: int, wat: byte**) -> int: printf("lol = %d\n", lol) # Output: lol = 1 return 0