updating the core for actual builds and working tests
This commit is contained in:
parent
e82a9c161b
commit
a94ad65914
10 changed files with 219 additions and 86 deletions
|
|
@ -142,9 +142,11 @@ mod test {
|
|||
|
||||
#[test]
|
||||
fn test_list() {
|
||||
let lisp = read_to_string("./test_presentation.lisp").expect("oops");
|
||||
let lisp =
|
||||
read_to_string("./test_presentation.lisp").expect("oops");
|
||||
println!("{lisp}");
|
||||
let mut parser = Parser::from_str_custom(&lisp, Options::elisp());
|
||||
let mut parser =
|
||||
Parser::from_str_custom(&lisp, Options::elisp());
|
||||
for atom in parser.value_iter() {
|
||||
match atom {
|
||||
Ok(atom) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue