Formatter

This commit is contained in:
LukeMathWalker
2024-05-24 18:16:20 +02:00
parent 1aae615bb4
commit 4401743807
36 changed files with 0 additions and 36 deletions

View File

@@ -14,4 +14,3 @@ It might not sound like much, but it'll give us a chance to cover a lot of Rust'
Nailing the basics with a few exercises will get the language flowing under your fingers.
When we move on to more complex topics, such as traits and ownership, you'll be able to focus on the new concepts
without getting bogged down by the syntax or other trivial details.

View File

@@ -99,4 +99,3 @@ let message = if number < 5 {
In the example above, each branch of the `if` evaluates to a string literal,
which is then assigned to the `message` variable.\
The only requirement is that both `if` branches return the same type.

View File

@@ -9,4 +9,3 @@ So far you've learned:
- How to execute conditional logic via comparisons and `if`/`else` expressions
It looks like you're ready to tackle factorials!