mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 19:34:27 -05:00
6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
(function(){
|
|
var a = b = d = true;
|
|
var c = false;
|
|
var result = a ? b ? c ? false : d ? true : null : null : null;
|
|
print(result);
|
|
})(); |