diff options
| author | Brian Cully <bjc@spork.org> | 2025-12-15 09:44:53 -0500 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-12-15 09:44:53 -0500 |
| commit | f0000e8b134a2e68b1ddbb554b958aef79fc31f4 (patch) | |
| tree | 008b458af4fd5ee947d37d3a41e70d590032ce92 /tests | |
| parent | d3674a9ea6e99beeb5d957d37632d1d8929d0206 (diff) | |
| download | automathon-f0000e8b134a2e68b1ddbb554b958aef79fc31f4.tar.gz automathon-f0000e8b134a2e68b1ddbb554b958aef79fc31f4.zip | |
vm: Add boolean operators for not, and, or, and xor
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/forth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/forth.rs b/tests/forth.rs index 2538419..cd743b9 100644 --- a/tests/forth.rs +++ b/tests/forth.rs @@ -3,7 +3,7 @@ use automathon::forth::{ vm::{VM, WordList}, }; -fn compiler_for(text: &str) -> Compiler { +fn compiler_for(text: &str) -> Compiler<'_> { let mut p = Compiler::new(text); p.compile().expect("badparse"); p |
