Hello world/Text: Difference between revisions

Content deleted Content added
m →‎{{header|ArnoldC}}: The text printed by TALK TO THE HAND has been replaced with Hello world! from hello world so the example is now fully compliant with the task..
m →‎{{header|NS-HUBASIC}}: Now it's documented how to implement Loops/Infinite with full compliance using a ? command instead of a PRINT command.
Line 2,203: Line 2,203:


=={{header|NS-HUBASIC}}==
=={{header|NS-HUBASIC}}==
As lowercase characters are not offered in NS-HUBASIC, perhaps some flexibility in the task specification could be offered.
<p>As lowercase characters are not offered in NS-HUBASIC, perhaps some flexibility in the task specification could be offered.</p>
Using <code>?</code>:
<lang NS-HUBASIC>10 ? "HELLO WORLD!"</lang>

Using <code>PRINT</code>:
<lang NS-HUBASIC>10 PRINT "HELLO WORLD!"</lang>
<lang NS-HUBASIC>10 PRINT "HELLO WORLD!"</lang>