You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Criterio {
varproperty minimo =0varproperty maximo =6method elegirLado()
}
object mismoLado inherits Criterio {
const lado = minimo.randomUpTo(maximo).roundUp()
overridemethod elegirLado() = lado
}
Más allá de que el ejemplo tiene algún que otro smell, el problema pasa porque se quiere inicializar la variable lado pero no se conoce el valor de minimo y maximo.
The text was updated successfully, but these errors were encountered:
Más allá de que el ejemplo tiene algún que otro smell, el problema pasa porque se quiere inicializar la variable lado pero no se conoce el valor de
minimo
ymaximo
.The text was updated successfully, but these errors were encountered: