< 返回版块

douchuan 发表于 2020-07-13 10:59

Tags:tour,rust

This project is meant to give an experienced programmer a swift introduction to Rust as an alternative to reading lengthy book style documentation.

go

评论区

写评论
pader 2020-07-13 23:24

额,match 还能这么玩???

--
👇
Neutron3529: 好文!

前六章一气呵成看完。

两个感受:

终于学会match了

match x{
g if g<0=>println!("{}",g);
g @ _=>println!("-{}",g);
}//print -x.abs()

竟然学会loop了

fn main() {
let mut x=0;
let x=loop{x+=1;if x>10 {break x}};//loop返回一个值
dbg!(x);
}
Neutron3529 2020-07-13 17:57

好文!

前六章一气呵成看完。

两个感受:

终于学会match了

match x{
g if g<0=>println!("{}",g);
g @ _=>println!("-{}",g);
}//print -x.abs()

竟然学会loop了

fn main() {
let mut x=0;
let x=loop{x+=1;if x>10 {break x}};//loop返回一个值
dbg!(x);
}
1 共 2 条评论, 1 页