Facebook
From Torrid Water Vole, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 283
  1. object Time{
  2.   def apply(h1: Int) = new Time(h1);
  3. }
  4.  
  5. class Time(var h:Int) {
  6.   if(h<0) h = 0;
  7.   def hour:Int = h;
  8.   def hour_=(x:Int){
  9.     if(x<0) h=0
  10.     else h=x;
  11.   }
  12.  
  13.   override def toString() = "[" + hour + "]";
  14. }