virtual_machine.go 117 Bytes
package vm

type VirtualMachine interface {
	Env() Environment
	Run(context *Context, data []byte) ([]byte, error)
}