1 2 3 4 5 6 7 8
contract C { uint public immutable a = 4; uint public constant b = 2; uint public c = 3; } // ----