Advertisement
Guest User

1 a)

a guest
Dec 13th, 2014
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.15 KB | None | 0 0
  1. class Time(private[this] var h:Int){
  2.   hour = h
  3.  
  4.   def hour:Int = h
  5.   def hour_=(h:Int) {
  6.     if(h < 0) this.h = 0
  7.     else
  8.     this.h = h
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement