summaryrefslogtreecommitdiffstats
path: root/DDateTest.vala
blob: 487aed7d095ded4fbfebd0014c5593372546c404 (plain)
1
2
3
4
5
6
7
void main() {
  Date date = Date();
  date.set_dmy(15,3,2010);
  DDate ddate = DDate(date);
  
  print(ddate.to_string() + "\n");
}