Using an expression as a statement
An expression that does not return a value can be used as a statement. For example, an action or method call can be used in this way.
Example:
action doSomething() { // Action has a side-effect but returns nothing
...
}
doSomething(); // Expression as a statement