navinsubramani / LabVIEW-Script-Language

Developing a platform to develop scripts, compile and execute it in the LabVIEW development or run time environment
MIT License
7 stars 2 forks source link

Comparative operation for Boolean #22

Closed navinsubramani closed 4 years ago

navinsubramani commented 4 years ago

Since the Comparative Operation like '==' is handled separately for each data type under its corresponding datatypes operation - Bool is not handled

print(True==True) print(True==False)

navinsubramani commented 4 years ago

It makes more sense to have the comparison function as data type agnostic and not handle the comparison in different functions.