; docformat = 'rst'
;+
; Example of using the $ format code.
;-
ntests = 10
print, 'Starting test', format='(A, $)'
for t = 0, ntests - 1 do begin
print, '.', format='(A, $)'
; run test t
end
print, 'done'
end
; docformat = 'rst'
;+
; Example of using the $ format code.
;-
ntests = 10
print, 'Starting test', format='(A, $)'
for t = 0, ntests - 1 do begin
print, '.', format='(A, $)'
; run test t
end
print, 'done'
end