mirror of
https://github.com/jbranchaud/til
synced 2026-01-16 13:38:02 +00:00
Fix the code block language type
This commit is contained in:
@@ -5,7 +5,7 @@ eventually want to break out of the loop. For that, you are going to need to
|
|||||||
invalidate the _while condition_. One way of going about this is creating a
|
invalidate the _while condition_. One way of going about this is creating a
|
||||||
mutable ref, changing it from true to false when a certain condition is met.
|
mutable ref, changing it from true to false when a certain condition is met.
|
||||||
|
|
||||||
```reasonml
|
```reason
|
||||||
let break = ref(true);
|
let break = ref(true);
|
||||||
|
|
||||||
while (break^) {
|
while (break^) {
|
||||||
|
|||||||
Reference in New Issue
Block a user