1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-23 00:28:46 +02:00
Files
.github
dev
exercises
rustlings-macros
solutions
00_intro
intro1.rs
intro2.rs
01_variables
02_functions
03_if
04_primitive_types
05_vecs
06_move_semantics
07_structs
08_enums
09_strings
10_modules
11_hashmaps
12_options
13_error_handling
14_generics
15_traits
16_lifetimes
17_tests
18_iterators
19_smart_pointers
20_threads
21_macros
22_clippy
23_conversions
quizzes
src
tests
.editorconfig
.gitignore
.markdownlint.yml
.typos.toml
CHANGELOG.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
LICENSE
README.md
THIRD_PARTY_EXERCISES.md
oranda.json
release-hook.sh
rustlings/solutions/00_intro/intro2.rs

5 lines
87 B
Rust
Raw Normal View History

2024-05-21 01:47:57 +02:00
fn main() {
// `println!` instead of `printline!`.
println!("Hello world!");
}