Skip to content
Snippets Groups Projects
Commit 034aa049 authored by gaspard.legouic's avatar gaspard.legouic
Browse files

Corrected error in enum example.

parent 15b531de
No related branches found
No related tags found
No related merge requests found
...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment