Hello world/Newline omission: Difference between revisions

Content added Content deleted
(Added Chipmunk Basic, GW-BASIC, Minimal BASIC, MSX Basic Quite BASIC and XBasic)
(Vale)
Line 1,344: Line 1,344:
Ursa doesn't output a newline to an I/O device by default, so simply omitting an endl object at the end of the output stream is all that's needed.
Ursa doesn't output a newline to an I/O device by default, so simply omitting an endl object at the end of the output stream is all that's needed.
<syntaxhighlight lang="ursa">out "goodbye world!" console</syntaxhighlight>
<syntaxhighlight lang="ursa">out "goodbye world!" console</syntaxhighlight>

=={{header|Vale}}==
{{works with|Vale|0.2.0}}
<syntaxhighlight lang="vale">
import stdlib.*;

exported func main() {
print("Goodbye, World!");
}
</syntaxhighlight>


=={{header|Verbexx}}==
=={{header|Verbexx}}==
<syntaxhighlight lang="verbexx">@STDOUT "Goodbye, World!";</syntaxhighlight>
<syntaxhighlight lang="verbexx">@STDOUT "Goodbye, World!";</syntaxhighlight>



=={{header|Verilog}}==
=={{header|Verilog}}==