RosettaCodeData/Task/String-interpolation-included-/BASIC256/string-interpolation-included-.basic

6 lines
116 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
x$ = "big"
print "Mary had a "; x$; " lamb"
x$ = "little"
print "Mary also had a "; ljust(x$, length(x$)); " lamb"