Added a future folder to examples
[fur] / examples / future / 32_finally.fur
1 def throws() do
2   try
3     42 // 0
4   finally
5     print('This should print')
6   end
7 end
8
9 variable = throws()
10
11 print('This should not print')