9 lines
187 B
Go
9 lines
187 B
Go
|
package vm
|
||
|
|
||
|
type VirtualMachine interface {
|
||
|
Env() Environment
|
||
|
Run(context *Context, data []byte) ([]byte, error)
|
||
|
Printf(string, ...interface{}) VirtualMachine
|
||
|
Endl() VirtualMachine
|
||
|
}
|