summaryrefslogtreecommitdiff
path: root/src/exec.go
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2021-11-02 13:57:27 -0400
committerKyle Gunger <kgunger12@gmail.com>2021-11-02 13:57:27 -0400
commit92b72f0357c553add6f010626e85268428ad5eb5 (patch)
tree0c1083a9fd61371eb0ac7f335691c6dc7c793ae5 /src/exec.go
parente18043e5ac4e09870e9f5b1498e0ef954064ee49 (diff)
[EXEC] General changes, refactoring
Diffstat (limited to 'src/exec.go')
-rw-r--r--src/exec.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exec.go b/src/exec.go
index 79584ce..b9a74f8 100644
--- a/src/exec.go
+++ b/src/exec.go
@@ -26,7 +26,7 @@ func main() {
flag.Parse()
- world := texec.BuildWorld(*inputFile)
+ root := texec.BuildRoot(*inputFile)
- texec.EvalTNSL(world, *progFlags)
+ texec.EvalTNSL(&root, *progFlags)
} \ No newline at end of file