commit 6ede00be64e93753362a1f853fab5cc6a8f6f58f Author: SimonFJ20 Date: Tue Mar 14 13:28:17 2023 +0100 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..ffbbecb --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "thiselang" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1ad33b6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "thiselang" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..44d5d7a --- /dev/null +++ b/src/main.rs @@ -0,0 +1,48 @@ +enum TokenType { + InvalidChar, + MalformedString, + MalformedComment, + Int, + Plus, + Minus, + Asterisk, + Slash, + Percent, + LParen, + RParen, +} + +struct Position { + index: usize, + line: i32, + col: i32, +} + +struct Token { + token_type: TokenType, + pos: Position, + length: usize, +} + +struct Lexer<'a> { + text: &'a str, + i: i32, +} + +impl<'a> Lexer<'a> { + pub fn new(text: &'a str) -> Self { + Self { text, i: 0 } + } +} + +impl<'a> Iterator for Lexer<'a> { + type Item = Token; + + fn next(&mut self) -> Option { + todo!() + } +} + +fn main() { + println!("Hello, world!"); +}