new
Golo does not have a new operator for allocating objects. Instead, one should just call a constructor as a function:
# Good let foo = java.util.LinkedList() # Compilation fails let foo = new java.util.LinkedList()