import org.softsmithy.lib.time.*;
public class DateDifferenceExample {
public static void main(String[] args) {
SmartLocalDate date1 = SmartLocalDate.of(2022, 3, 1);
SmartLocalDate date2 = SmartLocalDate.of(2022, 4, 1);
long daysDifference = date2.toEpochDay() - date1.toEpochDay();
System.out.println("The difference in days is: " + daysDifference);
}
}