summaryrefslogtreecommitdiff
path: root/src/texec/eval.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/texec/eval.go')
-rw-r--r--src/texec/eval.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/texec/eval.go b/src/texec/eval.go
index 9d2e64d..f863c5d 100644
--- a/src/texec/eval.go
+++ b/src/texec/eval.go
@@ -17,8 +17,13 @@
package texec
import "strings"
+import "tparse"
+
+func isMain(artifact tparse.Node) bool {
+ return false
+}
// EvalTNSL starts the evaluation on the World's main function with the given flags passed to the program
-func EvalTNSL(world *TWorld, f string) {
+func EvalTNSL(world *TModule, f string) {
flags := strings.Split(f, " ")
} \ No newline at end of file