commit 19d23eeec4773d6bb8108a0c3a0b1351d94d630f Author: Eduard Urbach Date: Tue Oct 17 11:06:14 2023 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..624a1b2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +* +!*/ +!*.q +!*.go +!*.mod +!*.sum +!*.md +!.gitignore diff --git a/README.md b/README.md new file mode 100644 index 0000000..860cdd4 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# q + +A simple programming language. + +## Installation + +```shell +git clone https://git.akyoto.dev/cli/q +cd q +go build +``` + +## Features + +* Fast compilation +* High performance +* Small binaries + +## License + +Please see the [license documentation](https://akyoto.dev/license). + +## Copyright + +© 2023 Eduard Urbach diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..2c2b156 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.akyoto.dev/cli/q + +go 1.21 diff --git a/main.go b/main.go new file mode 100644 index 0000000..d2013bb --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "os" + +func main() { + os.Exit(0) +}