1 2 3 4 5 6 7
use lambda::run; #[test] fn interpreter_can_read_and_interpret_file() { assert_eq!("12", run("sample/test.txt")); assert_eq!("true", run("sample/test_full.txt")); }