diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-02-02 01:05:54 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-02-02 01:05:54 +0000 |
| commit | 4f72798ac1518def38b49c0d9d9a686b43302689 (patch) | |
| tree | 022190e48e99210ef3eeeed0461eede7a132aed5 /README.md | |
| parent | 15975aadfb8030b03e614acc3024001c201aefe6 (diff) | |
| parent | f86ef2bbc1248bba9ebfd322c96a0f4c8e028148 (diff) | |
Merge branch 'main' of https://github.com/z-libs/Zen-C into arsmotorin/main
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -476,9 +476,9 @@ match val { // Destructuring Enums match shape { - Shape::Circle(r) => println "Radius: {r}", - Shape::Rect(w, h) => println "Area: {w*h}", - Shape::Point => println "Point" + Shape::Circle(r) => { println "Radius: {r}" }, + Shape::Rect(w, h) => { println "Area: {w*h}" }, + Shape::Point => { println "Point" }, } ``` |
