ref: 98faed57da6da8b1e39ebaa2e9e4c22ac2cef5c3
dir: /libstd/sleq.myr/
pkg std =
generic sleq : (a : @a[:], b : @a[:] -> bool)
;;
generic sleq = {a, b
var i
if a.len != b.len
-> false
;;
for i = 0; i < a.len; i++
if a[i] != b[i]
-> false
;;
;;
-> true
}