virtual_machine.go 186 Bytes
Newer Older
obscuren's avatar
obscuren committed
1
package vm
2 3 4 5 6

type VirtualMachine interface {
	Env() Environment
	RunClosure(*Closure) ([]byte, error)
	Depth() int
7 8
	Printf(string, ...interface{}) VirtualMachine
	Endl() VirtualMachine
9
}