/* If then else in a function */
Func Float testIfThenElse()
{
return if( 9 < 10 ) then { 10.0 } else { 11.0 };
}

