From 7a0b5ae88f36060a4beda3e889ac655ebe02e3fe Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Wed, 27 Dec 2023 16:46:26 -0800 Subject: [PATCH] example: fix boolean table --- examples/boolean.pork | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/boolean.pork b/examples/boolean.pork index 6f9b9e4..9f9e6b2 100644 --- a/examples/boolean.pork +++ b/examples/boolean.pork @@ -3,7 +3,7 @@ func buildRow(str, a, b, c, d) { print("|", str, "| ") for i in [a, b, c, d] { print(checkSeparator) - if a { print("✅|") } else { print("🚫|") } + if i { print("✅|") } else { print("🚫|") } } println() }