/* Test the and operator in complex expressions */ /* Test the complex expression directly */ test_expr : age -> age >= 0 and age <= 120; /* Test with different values */ result1 : test_expr 30; /* Should be true */ result2 : test_expr 150; /* Should be false */ result3 : test_expr -5; /* Should be false */ ..out result1; ..out result2; ..out result3;