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
For example, we have x = 5, or int x; x = 10 In Python and C++.
x = 5
int x; x = 10
What if we instead use store 5 in the variable x or make x have a value of 5 or something like that?
store 5 in the variable x
make x have a value of 5
The text was updated successfully, but these errors were encountered:
Aditionally, languages support reassigning variables:
python:
x = "hello there"
example idea in verboscript:
set x to hello there
Some languages also support assignment and modifying in place:
python example:
x = x + 5
Sorry, something went wrong.
No branches or pull requests
For example, we have
x = 5
, orint x; x = 10
In Python and C++.What if we instead use
store 5 in the variable x
ormake x have a value of 5
or something like that?The text was updated successfully, but these errors were encountered: