1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-04 05:40:29 +02:00

Make pattern matching exercise code editable (#2786)

I swear I already did this one...

@djmitche it looks like you had removed this `editable` after I last
added it, was there some reason for that?
This commit is contained in:
Nicole L
2025-06-26 12:07:18 -07:00
committed by GitHub
parent 088744a4c2
commit da28a502bf

View File

@ -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}}