I need to print something with variable number of spaces before it. For example if I need to print 5 spaces before my text, I will do:
(format T "%5T My Text")
Output: My Text
In place of 5, can I use a variable and be able to pass on a value to it? What I am looking for is like:
(format T "%(~d)T My Text" 5)
output: My Text