aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/eval/main.go8
-rw-r--r--cmd/j1e/main.go8
2 files changed, 12 insertions, 4 deletions
diff --git a/cmd/eval/main.go b/cmd/eval/main.go
index b9518f3..a5fa686 100644
--- a/cmd/eval/main.go
+++ b/cmd/eval/main.go
@@ -1,11 +1,15 @@
package main
-import "dim13.org/j1"
+import (
+ "context"
+
+ "dim13.org/j1"
+)
func main() {
vm := j1.New()
if err := vm.LoadFile("testdata/j1e.bin"); err != nil {
panic(err)
}
- vm.Run()
+ vm.Run(context.Background())
}
diff --git a/cmd/j1e/main.go b/cmd/j1e/main.go
index 65cf626..057e106 100644
--- a/cmd/j1e/main.go
+++ b/cmd/j1e/main.go
@@ -2,10 +2,14 @@ package main
//go:generate file2go -in ../../testdata/j1e.bin
-import "dim13.org/j1"
+import (
+ "context"
+
+ "dim13.org/j1"
+)
func main() {
vm := j1.New()
vm.LoadBytes(J1eBin)
- vm.Run()
+ vm.Run(context.Background())
}