rustlings/exercises/02_functions
2024-09-29 20:58:33 +02:00
..
functions1.rs Add solutions to functions 2024-05-21 02:43:18 +02:00
functions2.rs Add solutions to functions 2024-05-21 02:43:18 +02:00
functions3.rs Only take a u8 to avoid huge output 2024-08-17 14:59:00 +02:00
functions4.rs Add solutions to functions 2024-05-21 02:43:18 +02:00
functions5.rs Fix typos 2024-06-06 01:59:09 +02:00
functions6.rs chore: Refactored to adhere to new rustlings version 2024-09-29 20:58:33 +02:00
README.md feat: add functions6.rs and move_semantics6.rs exercises about closures 2024-09-28 11:59:09 +02:00

Functions

Here, you'll learn how to write functions and how the Rust compiler can help you debug errors even in more complex code. You will also learn what is the difference with closures.

Further information