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