cronokirby / iku

WIP programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add scopes

cronokirby opened this issue · comments

We should be able to handle new scopes like this:

func main() {
  x := 2
  {
    y := 4
  }
}