mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
80965fe2d7
### Example ```ruby begin throw 1 rescue Exception => e puts e.message end ``` #### Before this patch: ```console $ bin/mruby example.rb uncaught throw :1 ``` #### After this patch (same as Ruby): ```console $ bin/mruby example.rb uncaught throw 1 ```