This website requires JavaScript.
Explore
Help
Sign In
Shikong
/
trpl-zh-cn
Watch
1
Star
0
Fork
0
You've already forked trpl-zh-cn
mirror of
https://github.com/KaiserY/trpl-zh-cn
synced
2025-05-25 11:28:10 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
fdcc2a9d03
trpl-zh-cn
/
listings
/
ch03-common-programming-concepts
/
no-listing-34-for-range
/
src
/
main.rs
7 lines
112 B
Rust
Raw
Normal View
History
Unescape
Escape
add listings code && update to ch02-00
2022-02-06 16:43:51 +08:00
fn
main
(
)
{
for
number
in
(
1
..
4
)
.
rev
(
)
{
Update listing code in ch03 Signed-off-by: Sefank <12670778+Sefank@users.noreply.github.com>
2022-07-04 10:48:13 +08:00
println!
(
"
{number}
!
"
)
;
add listings code && update to ch02-00
2022-02-06 16:43:51 +08:00
}
println!
(
"
LIFTOFF!!!
"
)
;
}
Reference in New Issue
Copy Permalink