From 19d23eeec4773d6bb8108a0c3a0b1351d94d630f Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Tue, 17 Oct 2023 11:06:14 +0200 Subject: [PATCH] Initial commit --- .gitignore | 8 ++++++++ README.md | 25 +++++++++++++++++++++++++ go.mod | 3 +++ main.go | 7 +++++++ 4 files changed, 43 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 go.mod create mode 100644 main.go 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) +}