Skip to content

Commit

Permalink
docs: change next todo
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqueiroz committed Sep 21, 2024
1 parent 307dfeb commit 71ec560
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,23 @@ made in go!
![code](https://img.shields.io/github/languages/code-size/umbra-lang/umbra)
[![test-ci](https://github.com/pmqueiroz/umbra/actions/workflows/ci.yml/badge.svg)](https://github.com/pmqueiroz/umbra/actions/workflows/ci.yml)

TODO: MAKE THIS WORK
TODO:
- Improve tokens structure

```sh
go run . examples/complete.u
```go
type ColumnRange struct {
from int
to int
}

type Loc struct {
Line int
Range ColumnRange
}

type Token struct {
Lexeme string
Type TokenType
Loc
}
```

0 comments on commit 71ec560

Please sign in to comment.