2014-10-18 11:31:20 +00:00
|
|
|
package vm
|
2014-10-14 09:48:52 +00:00
|
|
|
|
|
|
|
type VirtualMachine interface {
|
|
|
|
Env() Environment
|
|
|
|
RunClosure(*Closure) ([]byte, error)
|
|
|
|
Depth() int
|
2014-10-14 11:37:26 +00:00
|
|
|
Printf(string, ...interface{}) VirtualMachine
|
|
|
|
Endl() VirtualMachine
|
2014-10-14 09:48:52 +00:00
|
|
|
}
|