add more builtin cells

main
NotAFile 2022-01-14 15:28:39 +01:00
parent fcd96c0efd
commit 7a9a54c685
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,8 @@ fn make_binop_callable(name: &str, celltype: &'static str) -> Callable {
pub fn get_builtins() -> Vec<Callable> {
vec![
make_binop_callable("and", "$and"),
make_binop_callable("or", "$or"),
make_binop_callable("xor", "$xor"),
make_binop_callable("xnor", "$xnor"),
]
}