diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-10-08 15:44:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-08 15:44:58 +0300 |
commit | 39665aaad785115a023b8195c50819eca73b758a (patch) | |
tree | 10a5a3b769a4bc5c6dcc16b1f6861a35e93ceb8c /es-es/groovy-es.html.markdown | |
parent | bb842f0e9605ef823e720ca4a2eb641a34c281b6 (diff) | |
parent | 9afd4fd1bd7ea9fb32dd3957c07380d3879da753 (diff) |
Merge pull request #2886 from banan314/master
[groovy/many] small fix in iteration over a map
Diffstat (limited to 'es-es/groovy-es.html.markdown')
-rw-r--r-- | es-es/groovy-es.html.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/es-es/groovy-es.html.markdown b/es-es/groovy-es.html.markdown index 799fc609..262d5e6a 100644 --- a/es-es/groovy-es.html.markdown +++ b/es-es/groovy-es.html.markdown @@ -232,10 +232,12 @@ for (i in array) { // Iterando sobre un mapa def map = ['name':'Roberto', 'framework':'Grails', 'language':'Groovy'] -x = 0 +x = "" for ( e in map ) { x += e.value + x += " " } +assert x.equals("Roberto Grails Groovy ") /* Operadores |