VoltLang / Volta

Compiler for the Volt Programming Language
157 stars 8 forks source link

Change logical operators to word #15

Closed bubnenkoff closed 8 years ago

bubnenkoff commented 8 years ago

I really do not see any benefits in using operators like: && || and so on. It's much easier to read code that use normal words like: AND OR and so on.

if (a = 1 OR b =2) look better then if (a = 1 || b =2)

Wallbraker commented 8 years ago

Since Volt is a C type language we will keep the symbolic operator, also since all other keywords are uncapitalized capitalized ones would look out of place.