Skip to content

Commit

Permalink
🍱 docs: change the codeblock example
Browse files Browse the repository at this point in the history
  • Loading branch information
welpo committed Feb 11, 2023
1 parent d412eae commit f6cd7d3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions content/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,13 @@ tags = ["markdown", "test"]

```rust
fn main() {
let number: u8 = 4;

match number {
i if i == 0 => println!("Zero"),
i if i > 0 => println!("Greater than zero")
i if i <= 0 => println!("Smaller or equal to zero"),
}
println!("Hello, world!") -> ();
}
```
## Quote

> We're all hurtling towards death. Yet here we are, for the moment, alive. Each of us knowing we're going to die. Each of us secretly believing we won't.
>
>
> — Charlie Kaufman, Synecdoche, New York

Expand Down

0 comments on commit f6cd7d3

Please sign in to comment.