Initial commit

This commit is contained in:
Eduard Urbach 2023-10-17 11:06:14 +02:00
commit 19d23eeec4
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
4 changed files with 43 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
*
!*/
!*.q
!*.go
!*.mod
!*.sum
!*.md
!.gitignore

25
README.md Normal file
View File

@ -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

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.akyoto.dev/cli/q
go 1.21

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "os"
func main() {
os.Exit(0)
}