1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-19 00:17:42 +02:00
Files
.cargo
.github
dev
exercises
00_intro
01_variables
02_functions
README.md
functions1.rs
functions2.rs
functions3.rs
functions4.rs
functions5.rs
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
README.md
rustlings-macros
solutions
src
tests
website
.gitignore
.typos.toml
CHANGELOG.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
LICENSE
README.md
build.rs
clippy.toml
release-hook.sh

6 lines
144 B
Rust
Raw Permalink Normal View History

2024-05-21 02:43:18 +02:00
// TODO: Add some function with the name `call_me` without arguments or a return value.
2015-09-17 21:12:00 -04:00
fn main() {
2024-05-21 02:43:18 +02:00
call_me(); // Don't change this line
2015-09-17 21:12:00 -04:00
}