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
sample.gop
// add a sample func test(s ...string) { } a := ["1","2","3"] test(a...) test a... // smart format `test(a...)` =>` test a...`
pass
main.gop:5:11: expected ';', found 'EOF'
main version
smart format test(a...) => test a...
test(a...)
test a...
The text was updated successfully, but these errors were encountered:
378461d
Merge pull request #1659 from xushiwei/class
35c15d3
fix #1644: parse `println x...`
No branches or pull requests
The following program
sample.gop
triggers an unexpected resultExpected result
pass
Got
main.gop:5:11: expected ';', found 'EOF'
Gop Version
main version
Additional Notes
smart format
test(a...)
=>test a...
The text was updated successfully, but these errors were encountered: