jashkenas--coffeescript/documentation/coffee/expressions.coffee

9 lines
186 B
CoffeeScript
Raw Normal View History

2010-07-29 04:51:35 +00:00
grade = (student) ->
if student.excellentWork
2009-12-21 16:41:45 +00:00
"A+"
else if student.okayStuff
if student.triedHard then "B" else "B-"
2009-12-21 16:41:45 +00:00
else
2009-12-30 05:22:27 +00:00
"C"
2009-12-21 16:41:45 +00:00
2010-07-29 04:51:35 +00:00
eldest = if 24 > 21 then "Liz" else "Ike"