We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Condition-less blocks can be used to group statements together and have temporary scopes
{ // ... }
import basics func main { { x int = 9 print(x / 2) } { x double = 9.0 print(x / 2) } }
Table of Contents