1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-03-16 04:10:01 +01:00

User data has to follow the grammar

of the target language
This commit is contained in:
Claudio Busatto 2019-03-27 20:00:34 +01:00
parent 56e7570b12
commit fc7e086396

View File

@ -91,9 +91,9 @@ cubes = (math.cube num for num in list)
# return _results;
# })();
comidas = ['brocolis', 'espinafre', 'chocolate']
comidas = ['brócolis', 'espinafre', 'chocolate']
eat alimento for alimento in comidas when alimento isnt 'chocolate'
#=>comidas = ['brocolis', 'espinafre', 'chocolate'];
#=>comidas = ['brócolis', 'espinafre', 'chocolate'];
#
#for (_k = 0, _len2 = comidas.length; _k < _len2; _k++) {
# alimento = comidas[_k];