Hello world/Newline omission: Difference between revisions

Content deleted Content added
Jjuanhdez (talk | contribs)
Added Dart
Jjuanhdez (talk | contribs)
Added Chipmunk Basic, GW-BASIC, Minimal BASIC, MSX Basic Quite BASIC and XBasic
Line 132:
==={{header|Applesoft BASIC}}===
<syntaxhighlight lang="applesoftbasic">PRINT "GOODBYE, WORLD!";</syntaxhighlight>
 
==={{header|Chipmunk Basic}}===
{{works with|Chipmunk Basic|3.6.4}}
<syntaxhighlight lang="qbasic">print "Goodbye, World!"; '' the trailing semi-colon suppresses the new line</syntaxhighlight>
 
==={{header|Commodore BASIC}}===
Line 141 ⟶ 145:
60 print "(End of the world)"
70 end</syntaxhighlight>
{{out}}
'''Output:'''
<pre>Goodbye, World!(End of the world)
<pre>
Goodbye, World!(End of the world)
 
ready.</pre>
</pre>
 
==={{header|BASIC256}}===
Line 153 ⟶ 155:
print " ";
print "World!";</syntaxhighlight>
 
==={{header|GW-BASIC}}===
{{works with|BASICA}}
<syntaxhighlight lang="qbasic">10 PRINT "Goodbye, World!"; '' the trailing semi-colon suppresses the new line</syntaxhighlight>
 
==={{header|IS-BASIC}}===
<syntaxhighlight lang="is-basicqbasic">10 PRINT "Goodbye, World! ";</syntaxhighlight>
 
==={{header|Minimal BASIC}}===
<syntaxhighlight lang="qbasic">10 PRINT "Goodbye, World!"; : REM the trailing semi-colon suppresses the new line
20 END</syntaxhighlight>
 
==={{header|MSX Basic}}===
<syntaxhighlight lang="qbasic">10 PRINT "Goodbye, World!"; : REM the trailing semi-colon suppresses the new line</syntaxhighlight>
 
==={{header|QBasic}}===
Line 164 ⟶ 177:
<syntaxhighlight lang="qbasic">PRINT "Goodbye, World!";
END</syntaxhighlight>
 
==={{header|Quite BASIC}}===
<syntaxhighlight lang="qbasic">10 PRINT "Goodbye, World!"; : REM the trailing semi-colon suppresses the new line</syntaxhighlight>
 
==={{header|True BASIC}}===
Line 172 ⟶ 188:
<syntaxhighlight lang="qbasic">PRINT "Goodbye, World!";
END</syntaxhighlight>
 
==={{header|XBasic}}===
<syntaxhighlight lang="qbasic">PROGRAM "helloworld"
VERSION "0.0000"
 
DECLARE FUNCTION Entry ()
 
FUNCTION Entry ()
PRINT "Goodbye, World!";
END FUNCTION
END PROGRAM</syntaxhighlight>
 
==={{header|Yabasic}}===