[4:12:37 AM] stykky: race = (winner, runners...) ->
print winner, runners
how can it do this?
race = function() {
var runners, winner;
winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
return print(winner, runners);
};
[4:12:55 AM] stykky: it is impossible logically
[4:14:38 AM] stykky: but logically it is impossible that the different istructions can do it the same, a part of istruction aren't written
[4:16:48 AM] stykky: this has a logical for me
number = -42 if opposite
means
if (opposite) {
number = -42;
}
[4:17:01 AM] stykky: but the previous example doesn t
[4:19:12 AM] stykky: but without logical, i think that...also to fix it, i think there is a logical in what you write...my mum makes me so lol
[4:22:39 AM] stykky: coffeescript is easier than javascript but, i think, must have more logical...infact to fix a program written in cs, i think you must have it in what you write
[4:26:12 AM] stykky: i have dinner...i leave the pc switchs on (spero si scriva cosi pd)
Trying to explain CoffeeScript to one of TerabyteS_ Italian friends. It's... a challenge.
Edited:
To keep this post relevant, I'm working on a nodejs connect asset compiler since as of the most recent connect and future releases of express the asset compiler it's been removed.