bbodi / notecalc3

NoteCalc is a handy calculator trying to bring the advantages of Soulver to the web.
https://bbodi.github.io/notecalc3/
GNU Affero General Public License v3.0
1.16k stars 43 forks source link

Conditionals and comparisons #30

Closed bbodi closed 7 months ago

bbodi commented 3 years ago
cost = 500
discount = true
cost = if discount then cost - 10% else cost
cost = if discount then cost - 10% 
cost = cost - 10% if discount

(if discount then 5% else 2%) + 3%

earnings = $45k                             | $45,000.00
tax = if earnings > $30k then 20% else 5%
My tax paid: earnings * tax                 | $9,000.00
TechPlasma commented 3 years ago

a ? b : c

bbodi commented 3 years ago

Currently I don't support this syntax.

It has only a tiny benefit over the proposed syntax (fewer characters) but has zero meaning for non-developers.

bbodi commented 7 months ago

Implemented in 0.4.0