Cargo init --> initialize new project in current folder
Cargo new hello --> initialize new project in hello folder
A [Link] file that contains metadata for our project, incl. a list of dependencies/external
libraries we use.
A src/[Link] file that is the entry point for our (main) binary.
cargo init --vcs none --> no git repository
rustup --> check updates
Operation Output Range Output Bytes per Output
Type Element Class
int8 -128 to 127 Signed 8-bit 1 int8
integer
int16 -32,768 to 32,767 Signed 16- 2 int16
bit integer
int32 -2,147,483,648 to 2,147,483,647 Signed 32- 4 int32
bit integer
int64 -9,223,372,036,854,775,808 to Signed 64- 8 int64
9,223,372,036,854,775,807 bit integer
[Link]
[Link]