diff options
author | Pablo Najt <pablonajt@gmail.com> | 2017-03-24 14:53:41 -0300 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-03-24 18:53:41 +0100 |
commit | c1d773eab766891c8c9f5820bf18c8fafa6a8d5e (patch) | |
tree | b5592f50f4314ea12b57a81446038619dd809c51 /es-es/kotlin-es.html.markdown | |
parent | 29f41f2802490cfa001a6170b98aaf715a89e456 (diff) |
[kotlin/all] Rename variable fooMutableDate to fooMutableData (#2688) (#2689)
Diffstat (limited to 'es-es/kotlin-es.html.markdown')
-rw-r--r-- | es-es/kotlin-es.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/es-es/kotlin-es.html.markdown b/es-es/kotlin-es.html.markdown index 5d2f165a..f48f6536 100644 --- a/es-es/kotlin-es.html.markdown +++ b/es-es/kotlin-es.html.markdown @@ -185,13 +185,13 @@ fun main(args: Array<String>) { // La función "with" es similar a la expresión de JavaScript "with". data class MutableDataClassExample (var x: Int, var y: Int, var z: Int) - val fooMutableDate = MutableDataClassExample(7, 4, 9) - with (fooMutableDate) { + val fooMutableData = MutableDataClassExample(7, 4, 9) + with (fooMutableData) { x -= 2 y += 2 z-- } - println(fooMutableDate) // => MutableDataClassExample(x=5, y=6, z=8) + println(fooMutableData) // => MutableDataClassExample(x=5, y=6, z=8) /* Podemos crear una lista utilizando la función "listOf". |