From 5142722da3edb3316596d6a64e53fbbfa08e2233 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 28 Dec 2019 17:51:05 -0500 Subject: [PATCH] Remove aliases for deprectaed functions. --- src/boot/boot.janet | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index b226c62b..fc75c6d6 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -72,14 +72,6 @@ (setdyn name* @{:ref @[init]}) nil) -# Aliases -(def == =) -(def not== ==) -(def order< <) -(def order<= <=) -(def order> >=) -(def order>= >=) - # Basic predicates (defn nan? "Check if x is NaN" [x] (not= x x)) (defn even? "Check if x is even." [x] (= 0 (% x 2)))