diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-01-19 03:17:05 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-01-19 03:17:05 -0500 |
commit | 3f8ded0b759181509f975030591d86f0570e7123 (patch) | |
tree | 4ce67c0bce5df6b22ce935b82eda880ca61a2770 /src/tint.go | |
parent | 233ea2d71548525f074ee5aa13119b32434a1ec2 (diff) |
[EVAL] Small update
+ Fix a bug with finding names of blocks
+ More verbose output
+ Fill out the main eval func a little
Diffstat (limited to 'src/tint.go')
-rw-r--r-- | src/tint.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tint.go b/src/tint.go index 6213e92..b17d8b0 100644 --- a/src/tint.go +++ b/src/tint.go @@ -28,5 +28,5 @@ func main() { root := texec.BuildRoot(*inputFile) - //texec.EvalTNSL(&root, *progFlags) + fmt.Printf("Program end. Returned %v.\n", texec.EvalTNSL(&root, *progFlags)) }
\ No newline at end of file |