Mike Simons
Mike Simons
``` go mrb := NewMrb() defer mrb.Close() proc, _ := mrb.LoadString(` Proc.new do puts 1 end `) val, err := mrb.Run(proc, nil) fmt.Printf("%#v, %#v", val, err) ``` **Expected:** Prints "1",...
As per the initial comment on #21 I noticed that `Decode` will not handle quite a few common cases where there may need to be some basic coercions. Of particular...
As per the discussion on #24, these types wrap the low level mruby types which bypass the `[]`, `[]=` etc methods that ruby users may expect to work. Raised here...