Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 286 Bytes

File metadata and controls

11 lines (8 loc) · 286 Bytes

Missing Semicolon

Certain statements within molang require a semicolon at the end of the statement. If a semicolon is not present, this error will be thrown.

-"variable.example=1"
+"variable.example=1;"

-"variable.foo=1;variable.bar=2"
+"variable.foo=1;variable.bar=2;"