/* Tests simple variable assignments and expressions. */ int a = 3; int b = a - 5; int c = a + b*7; bool d = a == b;