clever-lang / clever

Clever programming language
Other
47 stars 16 forks source link

Ternary support #322

Open felipensp opened 11 years ago

felipensp commented 11 years ago

We must implement it.

muriloadriano commented 10 years ago

Because we use : for module access, we could implement a Python-like syntax:

var abs = x if (x >= 0) else -x;