JanetDocsPlaygroundI'm feeling luckyGitHub sign in
(def a @[1 2]) (def b @[1 2]) (= a b) # => false (def a @[1 2]) (def b (array/concat a 3)) a # => @[1 2 3] b # => @[1 2 3] (= a b) # => true