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