## Something like this... ```js global { ~ int CONST = 10; int example_sum = helper(1, 2); } () { print(CONST); // ... } helper(int a, int b -> int) { /* ... */ } ```
Something like this...