Commit e9eb4e9811be289b5a71237175d878d30d9e057c

Thomas de Grivel 2024-04-10T20:49:49

readme

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/README.md b/README.md
index ff822bc..19eb97c 100644
--- a/README.md
+++ b/README.md
@@ -421,10 +421,10 @@ not provided, then `void` gets returned.
 
 One liner examples with `then` :
 ```
-ic3> if 42 then true end
-true
-ic3> if 0 then true else false end
-false
+ic3> if 42 then 100 else 101 end
+100
+ic3> if 0 then 100 else 101 end
+101
 ```
 
 ### c3s