Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pattern-matching/exercise.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ evaluate to `85`. We represent this as a much bigger tree:

In code, we will represent the tree with two types:

```rust
```rust,editable
{{#include exercise.rs:Operation}}

{{#include exercise.rs:Expression}}
Expand All @@ -68,7 +68,7 @@ get the tests to pass one-by-one. You can also skip a test temporarily with
fn test_value() { .. }
```

```rust
```rust,editable
{{#include exercise.rs:Operation}}

{{#include exercise.rs:Expression}}
Expand Down