/* Simple test for bracket notation */ numbers : {1, 2, 3, 4, 5}; first : numbers[1]; second : numbers[2]; ..assert first = 1; ..assert second = 2; ..out "Bracket notation test completed";