Moved ethvm => vm

This commit is contained in:
obscuren
2014-10-18 13:31:20 +02:00
parent a02dc4ccc3
commit 20c742e474
16 changed files with 24 additions and 23 deletions

9
vm/virtual_machine.go Normal file
View File

@ -0,0 +1,9 @@
package vm
type VirtualMachine interface {
Env() Environment
RunClosure(*Closure) ([]byte, error)
Depth() int
Printf(string, ...interface{}) VirtualMachine
Endl() VirtualMachine
}