Get all examples compiling, though output is not correct
[fur] / examples / 25_list_literals.fur
1 greetings = [
2   'Hello, world',
3   'Goodnight, moon',
4 ]
5
6 print(greetings[0], '\n')
7 print(greetings[1], '\n')