vrodedanya / naobi

Naobi language
https://vrodedanya.github.io/naobi/
MIT License
4 stars 0 forks source link

[FEATURE] If else update #14

Closed vrodedanya closed 2 years ago

vrodedanya commented 2 years ago

Is your feature request related to a problem? Please describe. We don't need to use brackets in if statement, because we already know where logical expression and where code

Describe the solution you'd like Replace:

...
if (some_var == 10)
{
}
...

by

if some_var == 10
{
}
vrodedanya commented 2 years ago

Fix issue in 4c67057