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
Some languages use print(), others use printf()
print()
printf()
I think the keyword show shuld come bfore anything that is to be printed to the screen.
show
ie, instead of print("hello world"), we use show hello world
print("hello world")
show hello world
Multiple keywords can be used, not just show, of course
The text was updated successfully, but these errors were encountered:
when using show, any variable names are automatically converted to their values:
if the variable "x" was 10, then show x would show "10" on the screen
show x
However, using the variable name in quotation marks would force it to show as is: show x would print "x" on the screen.
Sorry, something went wrong.
additional variants of the keyword could include display
display
No branches or pull requests
Some languages use
print()
, others useprintf()
I think the keyword
show
shuld come bfore anything that is to be printed to the screen.ie, instead of
print("hello world")
, we useshow hello world
Multiple keywords can be used, not just
show
, of courseThe text was updated successfully, but these errors were encountered: