Home › Forums › Decaffeinated Coffee › Computer Programmer › Reply To: Computer Programmer
May 1, 2011 10:05 am at 10:05 am
#763821
ZachKessin
Member
In Javascript:
var totalCartonsOfMilk = hasEggs()? 6 : 1;
lisp:
(let (totalCartonsOfMilk (if (hasEggs) 6 1)))