module arrays /* pub fn range(start, end T) []T { mut res := []T{} for i := start; i < end; i++ { res << i } return res } */