function g = { x - 2: x < 3,
x^3: x >= 5,
x: x > 7
};
print(evaluate g in (3));
print(evaluate g in (5));
print(evaluate g in (7));