We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
InternalDocs/compiler.md
1 parent bd393ae commit 994051eCopy full SHA for 994051e
InternalDocs/compiler.md
@@ -324,14 +324,14 @@ basic block.
324
325
As an example, consider the following code snippet:
326
327
-.. code-block:: Python
328
-
329
- if x < 10:
330
- f1()
331
- f2()
332
- else:
333
- g()
334
- end()
+```python
+if x < 10:
+ f1()
+ f2()
+else:
+ g()
+end()
+```
335
336
The ``x < 10`` guard is represented by its own basic block that
337
compares ``x`` with ``10`` and then ends in a conditional jump based on
0 commit comments