Skip to content

compiler arithmetic operations have a wrong order of operations #12

Description

@MRoiban
a = 4
b = 3
c = a - b
print(c)
> -1
a = 3
b = 4
c = a - b
print(c)
> 1

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingcompiler

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions