SeedV / SeedLang

An embeddable and visualizable scripting engine for .Net and Unity.
https://seedv.github.io/SeedLang/
Apache License 2.0
9 stars 1 forks source link

Implement boolean and comparison expressions #147

Closed codingpotato closed 2 years ago

codingpotato commented 2 years ago

Fix #134

Supports following code:

1 < 2 < 3
1 < 2 == 3
1 < 2 < 3 and 1 < 2 == 3
1 < 2 < 3 or 1 < 2 == 3
None == None
None != None