There was an error while loading. Please reload this page.
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