Skip to content
Snippets Groups Projects

Clarified enum example.

Merged gaspard.legouic requested to merge (removed):gaspard.legouic-master-patch-85095 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -26,7 +26,7 @@ date: "2022-11-02"
@@ -26,7 +26,7 @@ date: "2022-11-02"
```C
```C
enum days d = monday;
enum days d = monday;
(d + 2) == tuesday + tuesday; // true
(d + 2) == monday + monday; // true
```
```
# Types énumérés (2/2)
# Types énumérés (2/2)
Loading