Get date of today

I need to know date of today using i think Gregorian module and in the Api documentation ther is this example:

using Toybox.System;
using Toybox.Time;
using Toybox.Time.Gregorian;
var options = {
:year => 2003,
:month => 5, // 3.x devices can also use :month => Gregorian.MONTH_MAY
:day => 16,
:hour => 0
};
var date = Gregorian.moment(options);
var birthday = Gregorian.info(date, Time.FORMAT_MEDIUM);
System.println(birthday.year); // 2003
System.println(birthday.month); // May
System.println(birthday.day); // 16
System.println(birthday.hour); // 19

but i need to know today...

thanks