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
SeedLang.Shell 0.2.0-preview20220410023855 Copyright 2021-2022 The SeedV Lab. >>> a = [1, 2, 3] >>> if len(a) > 1: ... print(****) ... ---------- Source ---------- 1 if len(a) > 1: 2 print(****) ---------- Run ---------- 1 if len(a) > 1: 2 print(****) 20220410103942998 Fatal (SeedLang.X) <> [Ln 1, Col 0 - Ln 2, Col 9] 37: SyntaxErrorNoViableAlternative 'iflen(a)>1:\n print(**' 1 if len(a) > 1: 20220410103942998 Fatal (SeedLang.X) <> [Ln 1, Col 13 - Ln 1, Col 13] 38: SyntaxErrorUnwantedToken ':' {';', NEWLINE} 2 print(****) 20220410103942998 Fatal (SeedLang.X) <> [Ln 2, Col 0 - Ln 2, Col 1] 35: SyntaxErrorInputMismatch ' ' <EOF>
Notice that in the first error info, the source code is formatted as 'iflen(a)>1:\n print(**'. There should be at least one space between if and len.
'iflen(a)>1:\n print(**'
if
len
And, should we just show the original source code as it is in the error message, without removing any of its space characters?
The text was updated successfully, but these errors were encountered:
codingpotato
No branches or pull requests
Notice that in the first error info, the source code is formatted as
'iflen(a)>1:\n print(**'
. There should be at least one space betweenif
andlen
.And, should we just show the original source code as it is in the error message, without removing any of its space characters?
The text was updated successfully, but these errors were encountered: