Skip to content

Commit

Permalink
chore: file reorganization (#7)
Browse files Browse the repository at this point in the history
* chore: file reorganization

* Type fix
  • Loading branch information
rodrigo-pino committed Aug 4, 2023
1 parent 92eb795 commit 037dd49
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions pkg/runner/runner.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package runner
4 changes: 2 additions & 2 deletions pkg/vm/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ type VirtualMachine struct {
// todo(rodro): define state fields
}

func NewVirtualMachine(program *Program) *VirtualMachine {
func NewVirtualMachine() *VirtualMachine {
return &VirtualMachine{}
}

func (vm *VirtualMachine) Run() error {
return nil
return nil
}

0 comments on commit 037dd49

Please sign in to comment.