7 lines
168 B
Text
7 lines
168 B
Text
|
|
10 REM Print some quotes
|
||
|
|
20 PRINT CHR$(34)
|
||
|
|
30 REM Print some more doublequotes
|
||
|
|
40 PRINT """"
|
||
|
|
50 REM Output the word hello enclosed in doublequotes
|
||
|
|
60 PRINT """Hello"""
|