summaryrefslogtreecommitdiff
path: root/README_IT.md
diff options
context:
space:
mode:
Diffstat (limited to 'README_IT.md')
-rw-r--r--README_IT.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README_IT.md b/README_IT.md
index be48cda..9e505d9 100644
--- a/README_IT.md
+++ b/README_IT.md
@@ -477,9 +477,9 @@ match val {
// Destrutturazione degli Enums
match forma {
- Forma::Cerchio(r) => println "Raggio: {r}",
- Forma::Rettangolo(w, h) => println "Area: {w*h}",
- Forma::Punto => println "Punto"
+ Forma::Cerchio(r) => { println "Raggio: {r}" },
+ Forma::Rettangolo(w, h) => { println "Area: {w*h}" },
+ Forma::Punto => { println "Punto" },
}
```