Skip to content

Instantly share code, notes, and snippets.

@erikh
Created October 5, 2016 21:29
Show Gist options
  • Save erikh/e778c4f91b46265164ec6cdc0fddcd58 to your computer and use it in GitHub Desktop.
Save erikh/e778c4f91b46265164ec6cdc0fddcd58 to your computer and use it in GitHub Desktop.
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