Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
D NumberDays S 6 0
D StartDate S D DatFmt(*ISO)
D EndDate S D DatFmt(*ISO)
/free
StartDate = %DATE('1900-01-01');
EndDate = %DATE();
NumberDays = %DIFF(EndDate:StartDate:*DAYS);
DSPLY NumberDays;
RETURN;
/end-free