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
Hi team,
I have two examples of code in Samora Lang that makes the compiler go craise:
1 - Code without ;
;
let var = "Value" print( var)
if you run this code the compiler freezes
2 - Code with ; in the end statement
let var = "Value" print( var);
In this one no output is presented
Some it makes clear that we need to improve syntax errors.
The only working scenario is with semi colons in all statements
let var = "Value"; print( var);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi team,
I have two examples of code in Samora Lang that makes the compiler go craise:
1 - Code without
;
if you run this code the compiler freezes
2 - Code with
;
in the end statementIn this one no output is presented
Some it makes clear that we need to improve syntax errors.
The only working scenario is with semi colons in all statements
The text was updated successfully, but these errors were encountered: