From c3fc9678788955cc3efc2fba9e6b79ba0f4d9a8d Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Fri, 9 Jan 2026 17:42:40 +1100 Subject: [PATCH] Update If Keyword --- If-Keyword.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/If-Keyword.md b/If-Keyword.md index c990f3d..0859bda 100644 --- a/If-Keyword.md +++ b/If-Keyword.md @@ -4,7 +4,7 @@ Syntax: `if $bool %line` Average Time Complexity: `O(1)` -Worst Case Time Complexity: `O(n)` +Worst Case Time Complexity: `O(n)`, where `n` is the number of labels created ## Overview The `if` keyword allows you to jump to a label or line if a condition is true. It is a core part of the ground programming language, as it would not be [Turing Complete](https://en.wikipedia.org/wiki/Turing_completeness) without.