├── .gitignore ├── LICENSE ├── README.md ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | asciiscript 2 | *.sh 3 | *.cast 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher-dG/asciiscript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher-dG/asciiscript/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/christopher-dG/asciiscript 2 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopher-dG/asciiscript/HEAD/main.go --------------------------------------------------------------------------------