Optional Parentheses
The parenthesis around some types of expressions are optional now.
Gross Waypluto
print(("hello world"):contains("world"))
Clean Waypluto
print("hello world":contains("world"))
This also works for table types.
The parenthesis around some types of expressions are optional now.
Gross Waypluto
print(("hello world"):contains("world"))
Clean Waypluto
print("hello world":contains("world"))
This also works for table types.