summaryrefslogtreecommitdiff
path: root/rust/src/main.rs
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.bailly@iohk.io>2024-09-24 09:33:37 +0200
committerArnaud Bailly <arnaud.bailly@iohk.io>2024-09-24 09:33:37 +0200
commit72190fe9bbe8b72294d4649d9c3b68f101f2aad2 (patch)
tree3d1bde2047a8bbde4a8e595c275b46e41c37a688 /rust/src/main.rs
parentc87e50d9b4859ad16034437e812a84cbe59db6a7 (diff)
downloadlambda-nantes-72190fe9bbe8b72294d4649d9c3b68f101f2aad2.tar.gz
Split module into ast and parser
Diffstat (limited to 'rust/src/main.rs')
-rw-r--r--rust/src/main.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/rust/src/main.rs b/rust/src/main.rs
index b6cc9bf..f401886 100644
--- a/rust/src/main.rs
+++ b/rust/src/main.rs
@@ -2,8 +2,6 @@ use std::env::args;
use lambda::run;
-mod lambda;
-
fn main() {
run(&args().nth(1).unwrap());
}