dust/tests/variables.rs

7 lines
135 B
Rust
Raw Normal View History

2024-03-06 23:15:25 +00:00
use dust_lang::*;
#[test]
fn set_and_get_variable() {
2024-03-07 00:45:41 +00:00
assert_eq!(interpret("foobar = true; foobar"), Ok(Value::boolean(true)));
2024-03-06 23:15:25 +00:00
}