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