We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I observed regressions on behavior before and after #22:
@sys.get_cli_args()
@env.get_args()
@sys.get_cli_args(): ["moonrun", "foo.wasm", "aaa", "bbb"] @env.get_args(): ["aaa", "bbb"]
["moonrun", "foo.wasm", "aaa", "bbb"]
["aaa", "bbb"]
@io.print(i)
println(i)
For example test/test_src/print.mbt Before:
test/test_src/print.mbt
123-456789
After:
123 -456 789
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I observed regressions on behavior before and after #22:
@sys.get_cli_args()
returns more arguments than@env.get_args()
@sys.get_cli_args()
:["moonrun", "foo.wasm", "aaa", "bbb"]
@env.get_args()
:["aaa", "bbb"]
@io.print(i)
does not end the line butprintln(i)
does:For example
test/test_src/print.mbt
Before:
After:
The text was updated successfully, but these errors were encountered: