diff options
Diffstat (limited to 'src/texec/eval.go')
-rw-r--r-- | src/texec/eval.go | 7 |
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 |