85 lines
1.6 KiB
Markdown
Raw Normal View History

2024-08-26 12:46:47 +02:00
# q
A programming language that compiles down to machine code.
## Features
- Fast compilation
- High performance
- Small executables
2025-02-10 11:16:22 +01:00
- Zero dependencies
2024-08-26 12:46:47 +02:00
## Installation
```shell
git clone https://git.akyoto.dev/cli/q
cd q
go build
```
2025-02-10 10:56:32 +01:00
This will place the compiler inside the repository.
Either use `./q` for the following examples or get access to the shorter `q` in any directory via symlink:
```shell
ln -s $PWD/q ~/.local/bin/q
```
This assumes that your shell loads `~/.local/bin`.
2024-08-26 12:46:47 +02:00
## Usage
```shell
2025-02-10 10:56:32 +01:00
q [command] [options]
```
The `build` command creates an executable:
```shell
q build examples/hello
```
The `run` command does everything `build` does but also executes it:
```shell
q run examples/hello
```
You don't have to use physical directories, it's perfectly valid to use a list of files:
```shell
q build hello.q world.q
```
To show verbose compiler output use `-v` or `--verbose`:
```shell
q build examples/hello -v
2024-08-26 12:46:47 +02:00
```
2025-02-10 10:56:32 +01:00
For more information see `q help`.
## Platforms
You can cross-compile executables for Linux, Mac and Windows.
```shell
q build examples/hello --os linux
q build examples/hello --os mac
q build examples/hello --os windows
```
## Status
2025-02-10 11:16:22 +01:00
`q` is under heavy development and not ready for production yet.
2025-02-10 10:56:32 +01:00
Feel free to [get in touch](https://akyoto.dev/contact) if you are interested in helping out.
2024-08-26 12:46:47 +02:00
2025-02-10 11:16:22 +01:00
The biggest obstacle right now is the lack of funding. If you want to help out financially you can [donate towards the project](https://en.liberapay.com/akyoto).
2025-02-10 10:56:32 +01:00
## License
2024-08-26 12:46:47 +02:00
2025-02-10 10:56:32 +01:00
Please see the [license documentation](https://akyoto.dev/license).
2024-08-26 12:46:47 +02:00
## Copyright
© 2023 Eduard Urbach