Skip to content

Commit 28e13cd

Browse files
Update parse.rs
1 parent a025d37 commit 28e13cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl Atom {
2222
if let Ok(n) = source.parse::<i64>() {
2323
Some(Atom::Integer(n))
2424
} else {
25-
Some(Atom::Symbol("lisp_".to_string() + source))
25+
Some(Atom::Symbol("_".to_string() + source))
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)