examples/crash.rb in backtracer-0.0.1 vs examples/crash.rb in backtracer-0.0.2

- old
+ new

@@ -1,10 +1,11 @@ def go2(a, b) raise end -def go(a); - go2(a, 55); +def go(a) + b = 3 + go2(a, 55) end go '3'