You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -229,6 +229,7 @@ const outputFrequency: int = 20; // the temperature will be printed every outp
::::::::::::::::::::::::::::::::::::: keypoints
- "A comment is preceded with `//` or surrounded by `/* and `*/`"
- "All variables hold a certain type of data."
- "All variables in Chapel have a type, whether assigned explicitly by the user, or chosen by the Chapel
compiler based on its value."
- "Reassigning a new value to a `const` variable will produce an error during compilation. If you want to assign a new value to a variable, declare that variable with the `var` keyword."