From 7afdeaf0880a8364ad017996020d39dfb5522ea7 Mon Sep 17 00:00:00 2001 From: jt Date: Thu, 6 Feb 2025 20:41:24 +0200 Subject: [PATCH] Formatting --- docs/roska/megakakal/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/roska/megakakal/index.md b/docs/roska/megakakal/index.md index f7afa3b..cee60a4 100644 --- a/docs/roska/megakakal/index.md +++ b/docs/roska/megakakal/index.md @@ -9,27 +9,27 @@ into assembly. ## if else is just a part you jump over in assembly lol, so EZ XD -''' +``` if (condition) { ... } else { ... } -''' +``` ## loop We have only a single type of loop where you are responsible to decide when to check and how to exit. Break is just a goto:after-loop ? -''' +``` loop { ... if (condition) { break; } } -''' +``` ## func, label ...