aboutsummaryrefslogtreecommitdiff
path: root/sloth/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'sloth/src/main.rs')
-rw-r--r--sloth/src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/sloth/src/main.rs b/sloth/src/main.rs
index bdcb4cb..957145d 100644
--- a/sloth/src/main.rs
+++ b/sloth/src/main.rs
@@ -11,7 +11,6 @@ pub mod analysis;
pub mod codegen;
pub mod lexer;
pub mod parser;
-pub mod sloth_std;
pub mod symtable;
use std::{env, fs};
@@ -24,7 +23,7 @@ use parser::AstParser;
use symtable::{Symbol, SymbolTable};
use crate::analysis::analyze;
-use crate::parser::graph::GraphBuilder;
+
use crate::symtable::Type;
fn main() {