38c61f6f25
This also reduces the time required spend in the VM
7 lines
117 B
Go
7 lines
117 B
Go
package vm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
Run(context *Context, data []byte) ([]byte, error)
|
|
}
|