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

9 lines
189 B
CoffeeScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
grade: student =>
if student.excellent_work
"A+"
else if student.okay_stuff
if student.tried_hard then "B" else "B-".
2009-12-21 16:41:45 +00:00
else
"C"..
eldest: if 24 > 21 then "Liz" else "Ike".