Hello world/Text: Difference between revisions

(This version technically worked in the Waduzitdo web interpreter, but I'm sure some implementations require the stop run command S: so I finally gave the program a proper end)
Line 3,515:
end.
</syntaxhighlight>
 
PascalABC.NET supports classical pascal syntax:
 
<syntaxhighlight lang="pascal">
program HelloWorld;
begin
writeln('Hello World!');
end.
</syntaxhighlight>
 
New syntax for an "one line" program
 
<syntaxhighlight lang="pascal">
##
println('Hello World!');
</syntaxhighlight>
 
 
{{out}}
<pre>
Hello World!
</pre>
 
=={{header|PASM}}==
<syntaxhighlight lang="pasm">print "Hello world!\n"
1

edit