on Feb 11th, 2014, 11:02am, Wendell wrote:Does BBC BASIC SUPPORT "PRINT USING" If not what shoud i use in it place. |
|
It supports it via the supplied FNUSING library:
Code: INSTALL @lib$+"FNUSING"
.....
PRINT FNusing("#.####", PI)
This is somewhat more flexible than the traditional PRINT USING, since you can use it other than in the context of printing:
Code: num$ = FNusing("#.####", PI)
Richard.