Skip to content

Instantly share code, notes, and snippets.

View GladeDiviney's full-sized avatar

Glade Diviney GladeDiviney

  • Corvallis, Oregon
View GitHub Profile
// Some demo code using Scala
import java.util.Date
import java.text.SimpleDateFormat // Look ma, no semicolon!
// Traits are like Java interfaces, but they can have code in them!
trait Age {
// This isn't defined, so it's a requirement for inheritors
def birth: Date