8 lines
141 B
Plaintext
8 lines
141 B
Plaintext
unit m3_arrayctx;
|
|
|
|
fn main() -> i32 {
|
|
let bytes: [3]u8 = [1, 2, 3];
|
|
if bytes[0] == 1 and bytes[2] == 3 { return 0; }
|
|
return 1;
|
|
}
|