// APRLL Interpreter 0.1.2.92
// Copyright © Autosam Corporation 2020. All rights reserved.
// This is a simple custom clock program.
Main{
inputbox(Hour,Enter hour:,h)
inputbox(Minute,Enter minute:,m)
inputbox(Second,Enter second:,s)
int s++
if([s]>59){
	int s = 0
	int m = [m]+1}
if([m]>59){
	int m = 0
	int h = [h]+1}
if([h]>23){
	alertbox(,24 hours has passed!)
	int h = 0}
mCls
mout([h]:[m]:[s])
if([h]<24)
	{Sleep(1000)
	jump 6}
mout(\nDone!)
}