uqbar-project / wollok-site

Wollok Programming Language Web Site
GNU Lesser General Public License v3.0
1 stars 10 forks source link

Example of super has errors #4

Closed lspigariol closed 6 years ago

lspigariol commented 7 years ago

in argentinian version

class AveEficiente inherits Ave { override method energiaGain(comida) { super(comida) / 2 } }

must be

class AveEficiente inherits Ave { override method energiaObtenida(comida) { return super(comida) / 2 } }

in english version

only add return in super line