You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even though the variables here use var, the values are macro'd into empty tables, so we should have type annotations inferred from the object creation.
Revised emit:
localnumbers: { number } = {}
table.insert(numbers, 69)
localdict: { [string]: number } = {}
dict["abc"] =420
The text was updated successfully, but these errors were encountered:
Even though the variables here use
var
, the values are macro'd into empty tables, so we should have type annotations inferred from the object creation.Revised emit:
The text was updated successfully, but these errors were encountered: