Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created July 31, 2016 10:22
Show Gist options
  • Save HDBandit/528f92192e9299bf8a8c009d44ca753e to your computer and use it in GitHub Desktop.
Save HDBandit/528f92192e9299bf8a8c009d44ca753e to your computer and use it in GitHub Desktop.
class Rational(n: Int, d: Int) {
require(d != 0, "Denominator cannot be 0")
println("My rational is created")
override def toString = s"$n/$d"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment