1 2 3 4 5 6 7 8
// -*- rust -*- fn main() { let str s = "hello"; s += "world"; log s; check(s.(9) == u8('d')); }