RosettaCodeData/Task/String-interpolation-included-/True-BASIC/string-interpolation-included-.basic

10 lines
203 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
LET x$ = "big"
PRINT "Mary had a "; x$; " lamb"
LET x$ = "little"
PRINT USING "Mary had another $##### lamb": x$
LET outstring$ = USING$("$#####", x$)
PRINT "Mary also had a "; outstring$; " lamb"
END