summaryrefslogtreecommitdiff
path: root/src/texec/eval.go
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2021-11-01 21:49:17 -0400
committerKyle Gunger <kgunger12@gmail.com>2021-11-01 21:49:17 -0400
commite70046f5e8a068369ac73aae47bf4aa7ec90d743 (patch)
tree2878dc722c2eb9f82c5f8f4a75199e1af0f69ccf /src/texec/eval.go
parentb605d4f7cc28129975bcabd5e72715492244a6b8 (diff)
[EXEC] flushout libtnsl stub a bit
Diffstat (limited to 'src/texec/eval.go')
-rw-r--r--src/texec/eval.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/texec/eval.go b/src/texec/eval.go
index 8b22f01..9d2e64d 100644
--- a/src/texec/eval.go
+++ b/src/texec/eval.go
@@ -15,3 +15,10 @@
*/
package texec
+
+import "strings"
+
+// EvalTNSL starts the evaluation on the World's main function with the given flags passed to the program
+func EvalTNSL(world *TWorld, f string) {
+ flags := strings.Split(f, " ")
+} \ No newline at end of file