From da28a502bfbc9ff566f4e4e11fdf5e9403950ac7 Mon Sep 17 00:00:00 2001 From: Nicole L Date: Thu, 26 Jun 2025 12:07:18 -0700 Subject: [PATCH] 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? --- src/pattern-matching/exercise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pattern-matching/exercise.md b/src/pattern-matching/exercise.md index 6dae8d63..bbe30347 100644 --- a/src/pattern-matching/exercise.md +++ b/src/pattern-matching/exercise.md @@ -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}}