TXA and TXB#
This command is used to write additional lines of text at the start and at the end of output.
In +PROG TEMPLATE you may use both commands.
+PROG TEMPLATE
HEAD
LET#A 2.35
TXB #(#A,0.3) ! 0 represents the number of integer places
! 3 represents the decimal places
! => output "2.350""
TXB #(#A,5.5) ! 0 represents the number of integer places
! 3 represents the decimal places
! => output " 2.35000"
LET#TXT "DUMMY TEXT"
TXB #TXT ! => output "DUMMY TEXT"
END