Files
doslang-mirror/fec/tests/m3/str.fe
T

8 lines
136 B
Plaintext

unit m3_str;
fn main() -> i32 {
let text: str = "abc";
if text[1] == ('b' as u8) and text.n == 3 { return 0; }
return 1;
}