Time
Time values represent specific times of day in Rhyme. They’re essential for scheduling, timestamps, and time-based operations.
Working with Times
// Current time
$now = $NOW
// Specific times
$meeting-time = 14:30
$alarm = 07:00
// Times with AM/PM
$morning-meeting = 9:30a // value stored as 09:30
$lunch-time = 12:00p // value stored as 12:00
$afternoon-break = 3:15pm // value stored as 15:15
$closing-time = 7:00pm // value stored as 19:00
// Time formatting
.text "Meeting at: $meeting-time"
Common Uses
- Meeting schedules
- Alarm settings
- Time tracking
- Duration calculations
More content coming soon…