Advertisement
Guest User

Untitled

a guest
Dec 14th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.14 KB | None | 0 0
  1. class Hour {
  2. private[this] var h: Int = _
  3. def hour: Int = h
  4. def hour_=(x: Int) {
  5. require(0<=x && x<24)
  6. h = x
  7. }
  8. }
  9. defined class Hour
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement