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