Skip to content

Instantly share code, notes, and snippets.

@spheromak
Created October 6, 2014 15:57
Show Gist options
  • Save spheromak/a23dc11018256830e4a8 to your computer and use it in GitHub Desktop.
Save spheromak/a23dc11018256830e4a8 to your computer and use it in GitHub Desktop.
package main
import (
"log"
"github.com/grubby/grubby/interpreter/vm"
)
func main() {
rvm := vm.NewVM("rvm")
a, err := rvm.Run("a = 123")
if err != nil {
log.Fatal("Error evaling expr ", err)
}
log.Println("Res: ", a)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment