Updated documentation
This commit is contained in:
parent
680d541ef6
commit
12dcf672cb
1 changed files with 14 additions and 14 deletions
28
README.md
28
README.md
|
@ -1,11 +1,11 @@
|
|||
# q
|
||||
|
||||
A simple programming language.
|
||||
A programming language for use in systems programming, game development and web servers.
|
||||
|
||||
## Features
|
||||
|
||||
* Fast compilation
|
||||
* Small binaries
|
||||
* Small executables
|
||||
* High performance
|
||||
|
||||
## Installation
|
||||
|
@ -24,6 +24,18 @@ Build an executable from `examples/hello` and run it:
|
|||
./q run examples/hello
|
||||
```
|
||||
|
||||
## Tests
|
||||
|
||||
```shell
|
||||
go test ./... -v -cover
|
||||
```
|
||||
|
||||
## Benchmarks
|
||||
|
||||
```shell
|
||||
go test ./tests -run='^$' -bench=. -benchmem
|
||||
```
|
||||
|
||||
## Todo
|
||||
|
||||
### Compiler
|
||||
|
@ -178,18 +190,6 @@ This is what generates the AST from tokens.
|
|||
|
||||
This is what generates expressions from tokens.
|
||||
|
||||
## Tests
|
||||
|
||||
```shell
|
||||
go test ./... -v -cover
|
||||
```
|
||||
|
||||
## Benchmarks
|
||||
|
||||
```shell
|
||||
go test ./tests -bench=. -benchmem
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
Please see the [license documentation](https://akyoto.dev/license).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue