From 93d7d791f31f372b2ff16372c12a2939d32627a3 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Sun, 7 Apr 2024 16:34:29 -0700 Subject: [PATCH] Added tests for reg comparison --- examples/test.modal | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/test.modal b/examples/test.modal index b6a2297..af01726 100644 --- a/examples/test.modal +++ b/examples/test.modal @@ -7,5 +7,7 @@ <> ((read)) (?:) <> (empty-register) (?x) <> (explode ?*) (str (?*)) +<> (eq ?x ?x) (#t) +<> (eq ?x ?y) (#f) -(implode reverse (explode hello)) (read) (explode hello) empty-register \ No newline at end of file +(implode reverse (explode hello)) (read) (explode hello) empty-register (eq abc abc) (eq abc def) \ No newline at end of file