package ch6.christmas;

import java.time.LocalDate;

public class Clock {
    public LocalDate now() {
        return LocalDate.now();
    }

    // any other date and time operation here...
}
