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.
% Getting current time
% H - hour
% M - minutes
% S - seconds
current_time(H,M,S) :-
get_time(TS),
stamp_date_time(TS,Date9,'local'),
arg(4,Date9,H),
arg(5,Date9,M),
arg(6,Date6,S.