summaryrefslogtreecommitdiff
path: root/README_IT.md
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-02-02 01:05:54 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-02-02 01:05:54 +0000
commit4f72798ac1518def38b49c0d9d9a686b43302689 (patch)
tree022190e48e99210ef3eeeed0461eede7a132aed5 /README_IT.md
parent15975aadfb8030b03e614acc3024001c201aefe6 (diff)
parentf86ef2bbc1248bba9ebfd322c96a0f4c8e028148 (diff)
Merge branch 'main' of https://github.com/z-libs/Zen-C into arsmotorin/main
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 5b9e3ab..3d70a65 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" },
}
```