about summary refs log tree commit diff
path: root/pkg/lang/vm/executor
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/lang/vm/executor')
-rw-r--r--pkg/lang/vm/executor/executor.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/lang/vm/executor/executor.go b/pkg/lang/vm/executor/executor.go
index 0b7ccef..1ab3773 100644
--- a/pkg/lang/vm/executor/executor.go
+++ b/pkg/lang/vm/executor/executor.go
@@ -14,4 +14,6 @@ type Exectutor interface {
 
 	AddGlobal(name string, v value.Value) error
 	GetGlobal(name string) (value.Value, bool, error)
+
+	Write(message string) error
 }