Created
November 7, 2013 23:24
-
-
Save rderoldan1/7363635 to your computer and use it in GitHub Desktop.
ejemplo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clase Jugador | |
edad = 0 | |
goles = 0 | |
nacimiento = 0000-00-00 | |
posicion = "" | |
valor = 0 | |
inicializador(edad, goles, nacimiento, posicion) | |
edad = edad | |
goles = goles | |
nacimiento = nacimiento | |
posicion = posicion | |
valor = calcular_valor | |
fin inicializador | |
calcular_valor | |
retornar goles * 1000 | |
fin calcular | |
fin Jugador | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment