Program wrapper struct

This commit is contained in:
Ian Gulliver
2021-11-19 20:16:01 -10:00
parent c536961df3
commit 5ccf6832c8
3 changed files with 18 additions and 13 deletions

5
vm/program.go Normal file
View File

@@ -0,0 +1,5 @@
package vm
type Program struct {
Functions [][]*Instruction
}