Remove function call parentheses

When calling a function with a single argument that is a string or a table, the parentheses can be remove.

print("hello")

Turns into:

print"hello"