Did you try to exe your prog, it doesn't work. Look
Set text size 12
Set text to bold
Print "what is your name?"
input name$
millisecuprun-timer ()
Print " Hello name$ this computer has been running for," millisecuprun, "secounds"
print "right now the time is," Get Time ()
WAIT KEY
END
Make it like this:
Set text size 12
Set text to bold
comma$ = ","
input "What is your name? ";name$
cls 0 : print name$;comma$
do
gosub time
if returnkey()=1 then end
loop
Time:
a$=left$(get time$(),2)
a=val(a$)
if a>12
a=a-12
post$="pm"
else
post$="am"
endif
set text font "Arial"
set text size 12
Print "The time is ";a;right$(get time$(),6);post$
return