编辑代码
Rust代码
1.27.1
运行
fn
main
() {
let
a:
usize
=
1
;
let
b:
usize
=
2
;
println!
(
"{:?}"
, a.cmp(&b)); }