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.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/sloth/src/main.rs b/sloth/src/main.rs
index 67f8f97..0cfeb09 100644
--- a/sloth/src/main.rs
+++ b/sloth/src/main.rs
@@ -10,11 +10,11 @@ pub mod codegen;
pub mod compiler;
pub mod lexer;
pub mod parser;
+pub mod sloth_std;
pub mod symbol;
use std::{env, fs};
-use compiler::Compiler;
use itertools::Itertools;
use lexer::Lexer;
use parser::graph::GraphBuilder;