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() }