class Time::Info {
  
  has sec : rw int;
  has min : rw int;
  has hour : rw int;
  has mday : rw int;
  has mon : rw int;
  has year : rw int;
  has wday : rw int;
  has yday : rw int;
  has isdst : rw int;

  static method new : Time::Info () {
    return new Time::Info;
  }
}