Harbour (programming language): Difference between revisions

Content deleted Content added
m I changed "open sourced" to "open source" and an irrelevant comment about Java.
Sample code: fix syntaxhighlight errors
Line 260:
===Sample code===
The typical "[[hello world]]" program would be:
<syntaxhighlight lang="visualfoxprofoxpro">
? "Hello, world!"
</syntaxhighlight>
Or:
<syntaxhighlight lang="visualfoxprofoxpro">
QOut( "Hello, world!" )
</syntaxhighlight>
Or:
<syntaxhighlight lang="visualfoxprofoxpro">
Alert( "Hello, world!" )
</syntaxhighlight>
Or, enclosed in an explicit procedure:
 
<syntaxhighlight lang="visualfoxprofoxpro">
PROCEDURE Main()