8 lines
93 B
Rust
8 lines
93 B
Rust
|
|
fn main() {
|
|
auto s = "hello";
|
|
let u8 c = s.(4);
|
|
log c;
|
|
check (c == (0x6f as u8));
|
|
}
|