import com.github.moment.Moment;
public class MomentExample {
public static void main(String[] args) {
Moment now = Moment.now();
Moment tomorrow = now.plusDays(1);
boolean isAfter = tomorrow.isAfter(now);
String formattedDate = now.format("yyyy-MM-dd HH:mm:ss");
System.out.println("Now: " + now);
System.out.println("Tomorrow: " + tomorrow);
System.out.println("Is tomorrow after now? " + isAfter);
System.out.println("Formatted date: " + formattedDate);
}
}