Sam Kalish
Results
3
comments of
Sam Kalish
> > ```lua > local foo = { > 1, > 2, > 3, > one = "one", > two = "two", > three = "three", > } > >...
> ```lua > local foo = {1, 2, 3} > > local {one, two, three} = foo > ``` > > So then, this is `nil, nil, nil`? That's not...