example: fix boolean table

This commit is contained in:
Alex Zenla 2023-12-27 16:46:26 -08:00
parent 35ce58bb44
commit 7a0b5ae88f
Signed by: alex
GPG Key ID: C0780728420EBFE5

View File

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