use in
1 files changed, 2 insertions(+), 2 deletions(-) M hashids.janet
M hashids.janet => hashids.janet +2 -2
@@ 13,8 13,8 @@ (def GUARD_DIV 12) (defn- swap [arr i j] - (def a (get arr j)) - (def b (get arr i)) + (def a (in arr j)) + (def b (in arr i)) (put arr i a) (put arr j b) )