9 lines
106 B
Rust
9 lines
106 B
Rust
|
// -*- rust -*-
|
||
|
|
||
|
fn main() {
|
||
|
let str s = "hello";
|
||
|
s += "world";
|
||
|
log s;
|
||
|
check(s.(9) == u8('d'));
|
||
|
}
|