1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

redocumenting slices/splices ... issue #833

This commit is contained in:
Jeremy Ashkenas 2010-12-04 12:52:51 -05:00
parent 67c20c0715
commit 75ca0f23ac
8 changed files with 85 additions and 10 deletions

View file

@ -1,3 +1,3 @@
var cholesterol, healthy;
cholesterol = 127;
healthy = 200 > cholesterol && cholesterol > 60;
healthy = (200 > cholesterol && cholesterol > 60);