Initial commit

This commit is contained in:
avitex 2018-06-11 00:21:28 +10:00
commit bb97fbcc70
Signed by: avitex
GPG Key ID: 38C76CBF3749D62C
6 changed files with 22 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
target
Cargo.lock

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "naxea"
version = "0.1.0"
authors = ["avitex <theavitex@gmail.com>"]
[dependencies]

1
src/main.rs Normal file
View File

@ -0,0 +1 @@
mod syntax;

0
src/syntax/lexer/mod.rs Normal file
View File

View File

@ -0,0 +1,12 @@
pub enum Token {
Space,
Newline,
Equal,
Plus,
Slash,
Hyphen,
}
pub struct Span {
type
}

1
src/syntax/mod.rs Normal file
View File

@ -0,0 +1 @@
mod lexer;