Skip to content

fix: bools 'or' function logical issue - #18

Merged
ali77gh merged 1 commit into
ali77gh:devfrom
amirdaraby:fix/or-builtin-function
Oct 18, 2025
Merged

fix: bools 'or' function logical issue#18
ali77gh merged 1 commit into
ali77gh:devfrom
amirdaraby:fix/or-builtin-function

Conversation

@amirdaraby

Copy link
Copy Markdown
Contributor

Description

The or function initialized the result to true, causing the following behavior:

Behavior Before (dev/stable branch)

-> true, true -> or
true
-> false, true -> or
true
-> false, false -> or
true (invalid)

Behavior After (fix branch)

-> true, true -> or
true
-> false, true -> or
true
-> false, false -> or
false

@ali77gh

ali77gh commented Oct 18, 2025

Copy link
Copy Markdown
Owner

Oops😁!

That's right, Thank you so much🤝.

@ali77gh
ali77gh merged commit 9eeee28 into ali77gh:dev Oct 18, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants