From 57cd660271b9d2b014d5276f146f322e1aeeee2e Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 5 Sep 2024 01:10:42 +0200 Subject: Use the correct symbol for XOR --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 3854640..3e48469 100644 --- a/src/main.c +++ b/src/main.c @@ -377,7 +377,7 @@ eqnprint(eqn_t *a) [NOT - NOT] = {"!", 1}, [OR - NOT] = {"||", 2}, [AND - NOT] = {"&&", 2}, - [XOR - NOT] = {"^", 1}, + [XOR - NOT] = {"~", 1}, [IMPL - NOT] = {"=>", 2}, [EQUIV - NOT] = {"<=>", 3}, }; -- cgit v1.2.3