// However, the following examples will work:
($some_var) ? print('true'): print('false'); // *print is a function*
echo $some_var ? 'true': 'false'; // changing the statement around
but docs on print says
print() *is not actually a real function (it is a language construct)*
These two should be synchronized
