Skip to main content

rl_lang/interpreter/stdlib/types/
null.rs

1use crate::interpreter::{evaluator::Evaluator, values::Value};
2
3pub fn func(_: &mut Evaluator, value: Value) -> bool {
4    matches!(value, Value::Null)
5}