From 6ebd87099b3b3ab96fb0d13bea8dc669b0b11366 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 22 Sep 2025 12:52:25 -0700 Subject: [PATCH] docs: update index.html --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index e9071e3..b7bea52 100644 --- a/index.html +++ b/index.html @@ -208,10 +208,9 @@ grade: (score >= 90) ? { "A" } : { "D" } _(grade) // Prints "C" -// Use as a standalone 'if' for side-effects. -// The block executes if the condition is true; the return value is discarded. -isReady: !0 -(isReady) ? { _("System is ready.") } +// Use for side-effects, like a traditional 'if'. +// The return value is discarded. +(grade == "C") ? { _("Passable") } \`\`\` ## Data Structures @@ -442,3 +441,4 @@ To create the initial Hi-to-JS transpiler, the following primitives and built-in +