Reuse normalize_basic_infix_operation in implementation of normalize_comparison_expre...
[fur] / examples / 26_list_literals.fur
1 greetings = [
2   'Hello, world',
3   'Goodnight, moon',
4 ]
5
6 print(greetings[0], '\n')
7 print(greetings[1], '\n')