aboutsummaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
authorJJ2023-04-05 07:24:06 +0000
committerJJ2023-04-05 16:17:05 +0000
commita68aa104c91a617a2d78a1015f786dce7fdac795 (patch)
tree8264bf5c55492c4ebef49d8b2d7289efefcf6698 /src/parser.rs
wip
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/parser.rs b/src/parser.rs
new file mode 100644
index 0000000..3223619
--- /dev/null
+++ b/src/parser.rs
@@ -0,0 +1,6 @@
+use crate::ast::*;
+
+pub fn parse(input: &str) -> Expression {
+ let input = input.trim();
+ todo!();
+}