/* If-then-else */
Float res;
res := if( true) then {9.0} else {8.0};

Print(res);
