RosettaCodeData/Task/String-interpolation-included-/GW-BASIC/string-interpolation-included-.basic
2023-12-16 21:33:55 -08:00

5 lines
118 B
Text

10 X$ = "big"
20 PRINT "Mary had a "; X$; " lamb"
30 X$ = "little"
40 PRINT USING "Mary also had a & lamb"; X$
50 END