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-04-07 04:18:04 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
d00679f57c
trpl-zh-cn
/
listings
/
ch03-common-programming-concepts
/
listing-03-05
/
src
/
main.rs
8 lines
123 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
(
)
{
let
a
=
[
10
,
20
,
30
,
40
,
50
]
;
for
element
in
a
{
Update listing code in ch03 Signed-off-by: Sefank <12670778+Sefank@users.noreply.github.com>
2022-07-04 10:48:13 +08:00
println!
(
"
the value is:
{element}
"
)
;
add listings code && update to ch02-00
2022-02-06 16:43:51 +08:00
}
}
Reference in New Issue
Copy Permalink