bayrell / BayLang

BayLang compiler source code
https://bayrell.org/ru/docs/baylang
Apache License 2.0
4 stars 0 forks source link

javascript not not operator #155

Open ildar-ceo opened 2 months ago

ildar-ceo commented 2 months ago

Code:

int b = !a;

Should be in JavaScript:

b = ~a;