Created
October 5, 2016 21:29
-
-
Save erikh/e778c4f91b46265164ec6cdc0fddcd58 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
mruby "github.com/mitchellh/go-mruby" | |
) | |
func main() { | |
mrb := mruby.NewMrb() | |
defer mrb.Close() | |
proc, _ := mrb.LoadString(` | |
def foo | |
Proc.new do | |
puts 1 | |
end | |
end | |
`) | |
val, err := mrb.Run(proc, nil) | |
fmt.Printf("%#v, %#v", val, err) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment