Reputation: 10394
Is it possible to somehow tell coffeescript to interpret arithmetic operations, so things like eleven = 10 + 1
compile to eleven = 11;
?
Upvotes: 1
Views: 45
Reputation: 614
No. Coffeescript simply generates javascript. It does not perform any mathematical preprocessing.
Upvotes: 2