FlatLang / Flat

(Deprecated) Soon-to-be legacy Flat compiler all in one
6 stars 0 forks source link

Add ability to declare local variables up 'n' amount of scopes #441

Open BSteffaniak opened 2 years ago

BSteffaniak commented 2 years ago
func() {
  if (x) {
    let ^y = "hey"
  }

  let z = y + " there"
}