Get all examples compiling, though output is not correct
[fur] / examples / 28_structures.fur
1 expressions = (
2   greeting: 'Hello',
3   farewell: 'Goodbye',
4 )
5
6 print(expressions.greeting, '\n')
7 print(expressions.farewell, '\n')