Simple exceptions (#6)
[fur] / examples / 30_division_by_zero.fur
1 def get_divided_answer() do
2   42 // 0
3 end
4
5 print(get_divided_answer())