wscript: containers and strings
Lists and maps with indexing vs .get; immutable, char-indexed strings.
rust
let xs = // List[int]; xs[0] faults OOB, xs.get(0) is Option
let ages = # // Map[string, int]; keys: int|bool|char|string
ages = 25 // insert or overwrite; ages["nope"] faults — use .get
xs.map.filter.fold
Strings are immutable; operations are methods returning new strings, indexed in characters (not bytes). The method lists live in list / map / string methods.