-->
Page 1 of 2

Need an example of print multiple

PostPosted: Sun Dec 06, 2015 6:04 pm
by cwilt
I would like to print more than one item. What am I missing?

simple example of what I want to do....

print time("hour") + ":" + time("min")

Re: Need an example of print multiple [SOLVED]

PostPosted: Sun Dec 06, 2015 6:32 pm
by cwilt
Got it figured out.

let mytime = time("hour") & ":"
let mytime = mytime & time("min")
print mytime

Re: Need an example of print multiple

PostPosted: Sun Dec 06, 2015 7:23 pm
by Mmiscool
you could also print the time like this
Code: Select allprint time("hour:min")


and it would come out in that format. No need to shuffle information around.

Re: Need an example of print multiple

PostPosted: Sun Dec 06, 2015 8:04 pm
by cwilt
I am converting to 12 hour format before printing.