Skip to content

Instantly share code, notes, and snippets.

@rderoldan1
Created November 7, 2013 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rderoldan1/7363635 to your computer and use it in GitHub Desktop.
Save rderoldan1/7363635 to your computer and use it in GitHub Desktop.
ejemplo
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