* redoing bool logic impl on latest main * adding snapshot tests (removing .new) * removing accidental change smh:( * accepting client side scene snapshot * accepting png snapshot and triggering ci * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * accepting png again? * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * accepting grid visibility snapshot * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * accepting png snapshot * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * accepting png snapshot * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * accepting png snapshot * rerunning simtest creation to get ops.snap files --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Jonathan Tran <jonnytran@gmail.com>
16 lines
228 B
Plaintext
16 lines
228 B
Plaintext
ii = true | false & false
|
|
i = if ii {
|
|
1
|
|
} else {
|
|
2
|
|
}
|
|
assert(i == 1, "and has higher precedence than or")
|
|
|
|
jj = false | true & !false | false & true
|
|
j = if jj {
|
|
1
|
|
} else {
|
|
2
|
|
}
|
|
assert(j == 1, "multiple logical operators")
|