a special kind of lottery
Jun. 16th, 2021 08:01 amGavin Newsom selects 10 winners of $1.5 million in California vaccine lottery
It's a different kind of Bee that reports it.
package scalakittens
/**
* A trait that describes a goodness of data or outcome or something
*
* Created by vpatryshev on 10/18/15.
*/
trait Goodness:
def isGood: Boolean
def isBad: Boolean = !isGood
trait PositiveAttitude extends Goodness { def isGood = true }
trait NegativeAttitude extends Goodness { def isGood = false}