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.
% append test1 "The current time is "
The current time is
% append test1 [clock format [clock seconds] -format "%I:%M:%S %p"]
The current time is 11:20:51 AM
% lappend test2 "The current time is "
{The current time is }
% lappend test2 [clock format [clock seconds] -format "%I:%M:%S %p"]
{The current time is } {11:21:21 AM}