1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

[coffeescript/it] Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
7afadb0181
960ee4a185
a67d9d9e0e
d115a86ac8
ef40704f9b
This commit is contained in:
Tommaso
2015-10-18 13:26:58 +02:00
parent 35b921505b
commit 1aaf79b6e5

View File

@@ -62,7 +62,7 @@ matematica =
# "radice": Math.sqrt,
# "quadrato": quadrato,
# "cubo": function(x) { return x * quadrato(x); }
#}
# }
# Splats:
gara = (vincitore, partecipanti...) ->
@@ -71,7 +71,7 @@ gara = (vincitore, partecipanti...) ->
# var partecipanti, vincitore;
# vincitore = arguments[0], partecipanti = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
# return print(vincitore, partecipanti);
#};
# };
# Esistenza:
alert "Lo sapevo!" if elvis?