From 628dd83397c47ff484f7c81b06dcd6d1e4af628b Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Sun, 1 Aug 2021 16:37:02 -0400 Subject: Split main file --- src/exec.go | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/exec.go (limited to 'src/exec.go') diff --git a/src/exec.go b/src/exec.go new file mode 100644 index 0000000..f92f435 --- /dev/null +++ b/src/exec.go @@ -0,0 +1,46 @@ +/* + Copyright 2020 Kyle Gunger + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +package main + +import "fmt" +import "tparse" +import "texec" +import "flag" + +func main() { + inputFile := flag.String("in", "", "The file to execute") + progFlags := flag.String("flags", "", "Flags for the executing program") + + flag.Parse() + + if err != nil { + fmt.Println(err.Error()) + return + } + + tokens := tparse.TokenizeFile(*inputFile) + + switch *writeLevel { + case 0: + fd.WriteString(fmt.Sprint(tokens) + "\n") + case 1: + tree := tparse.MakeTree(&tokens, *inputFile) + fd.WriteString(fmt.Sprint(tree) + "\n") + } + + fd.Close() +} \ No newline at end of file -- cgit v1.2.3