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 f66a1be..c0a76ad 100644
--- a/sloth/src/main.rs
+++ b/sloth/src/main.rs
@@ -50,7 +50,7 @@ fn main() {
// Parsing
let tokens = Lexer::new(&source).collect_vec();
- println!("{tokens:#?}");
+ //println!("{tokens:#?}");
let global_symtable = mk_symtable();
let mut ast = match AstParser::parse(tokens, global_symtable) {