This website works better with JavaScript.
Explore
Help
Register
Sign In
rust
/
trpl-zh-cn
mirror of
https://github.com/KaiserY/trpl-zh-cn
Watch
5
Star
0
Fork
You've already forked trpl-zh-cn
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
668430a31f
gh-pages
main
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '668430a31f'
${ noResults }
trpl-zh-cn
/
listings
/
ch03-common-programming-con...
/
no-listing-14-array-indexing
/
src
/
main.rs
7 lines
89 B
Raw
Blame
History
fn
main
(
)
{
let
a
=
[
1
,
2
,
3
,
4
,
5
]
;
let
first
=
a
[
0
]
;
let
second
=
a
[
1
]
;
}
Reference in new issue
View Git Blame
Copy Permalink