LytixDev / slash

The Slash Scripting Language
GNU General Public License v3.0
7 stars 0 forks source link

Comma operator #43

Closed LytixDev closed 1 year ago

LytixDev commented 1 year ago

what I want

# here a and b must be undefined
var a, b = 1, 2

var a, b = '1, 2'

var a, b = [1, 2]

var a, b = @["1": 1, "2": 2]

# here a and b must be defined
var t = '1, 2'
$a, $b = $t