#!/usr/local/bin/ruby def func begin x = 42 raise "eh?" rescue x = 99 end x end p func exit true