RosettaCodeData/Task/Literals-String/Liberty-BASIC/literals-string.liberty

10 lines
258 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
'Liberty BASIC does not support escape characters within literal strings.
print "Quotation mark:"
print chr$(34)
print
'Print literal string
print "Hello, World."
'Print literal string displaying quotation marks.
2020-02-17 23:21:07 -08:00
print chr$(34) + "Hello, World." + chr$(34)