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
V1:
MyFunc() { static var = 1 MsgBox % var } MyFunc()
V2 (Converted):
MyFunc() { static var = 1 MsgBox(var) } MyFunc()
V2 (Expected):
MyFunc() { static var := 1 MsgBox(var) } MyFunc()
The text was updated successfully, but these errors were encountered:
improve #298; added failing test
f494252
added f tests for #294 #295 #296 #298 #299 #300 #301 cleanup return tests
Should note this only occurs in V1 (not v1.1) scripts
Sorry, something went wrong.
2a7ce7b
No branches or pull requests
V1:
V2 (Converted):
V2 (Expected):
The text was updated successfully, but these errors were encountered: