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
Introduce new keyword to be able to new i32(25) for example.
new
new i32(25)
Also add pointer dereferencing * and variable address &.
*
&
The text was updated successfully, but these errors were encountered:
feat: Introduce new keyword
e8016d2
Part of #51 `new` is used to create a pointer to a scalar value
Successfully merging a pull request may close this issue.
Introduce
new
keyword to be able tonew i32(25)
for example.Also add pointer dereferencing
*
and variable address&
.The text was updated successfully, but these errors were encountered: