summaryrefslogtreecommitdiff
path: root/README_IT.md
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-02-02 00:51:44 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-02-02 00:51:44 +0000
commitf86ef2bbc1248bba9ebfd322c96a0f4c8e028148 (patch)
tree5c3ba2ee7f08cd1dc9091df645011178473376e9 /README_IT.md
parent6bbcd9536522386a53cd2f87ece7aa6cf423829f (diff)
Extended fix to all languagespatch-1
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" },
}
```