mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
Init, basic tokenizer setup.
This commit is contained in:
12
src/main/asl.go
Normal file
12
src/main/asl.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"asl"
|
||||
)
|
||||
|
||||
func main(){
|
||||
// read test file
|
||||
code, _ := ioutil.ReadFile("in/simple.asl")
|
||||
asl.Tokenize(code)
|
||||
}
|
||||
Reference in New Issue
Block a user