Sorry if this has been covered somewhere, I've tried searching for a solution.
I'm using bignum to show a big clock (like many others I guess). The code is this:
Code: Select all
Screen 1:
$dll(bignum,2,1#2,$Time(hh)) * $dll(bignum,2,1#2,$Time(nn))
$dll(bignum,2,2#2,$Time(hh)) * $dll(bignum,2,2#2,$Time(nn))
Screen 2:
$dll(bignum,2,1#2,$Time(hh)) $dll(bignum,2,1#2,$Time(nn))
$dll(bignum,2,2#2,$Time(hh)) $dll(bignum,2,2#2,$Time(nn))
BUT, I still dont think its visible enough so I would like to separate the big numbers with a single space, like this:
Code: Select all
$dll(bignum,2,1#2,0 0) * $dll(bignum,2,1#2,0 0)
$dll(bignum,2,2#2,0 0) * $dll(bignum,2,2#2,0 0)
Thanks!