https://kotlinlang.org logo
k

kevinmost

08/30/2016, 12:14 AM
I was thinking about possible syntax for it to be a language feature and looked at some other languages. There's a language in development by Jonathan Blow for game development called Jai that has this feature. The syntax he chose is:
Copy code
[scopedVarA, scopedVarB] {
    // function body
}
where only scopedVarA and scopedVarB would be accessible inside the function body