// Copyright 2026 Amber Hu
use chrono::Local;

fn main() {
    let time = Local::now();
    println!("It is now {}", time.format("%H:%M"));
}