jashkenas--coffeescript/documentation/js/expressions_assignment.js

5 lines
98 B
JavaScript
Raw Normal View History

2009-12-26 07:17:34 +00:00
(function(){
var one, six, three, two;
2010-01-17 23:12:59 +00:00
six = ((one = 1)) + ((two = 2)) + ((three = 3));
2010-02-24 23:27:10 +00:00
})();