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="
? "Hello, world!"
</syntaxhighlight>
Or:
<syntaxhighlight lang="
QOut( "Hello, world!" )
</syntaxhighlight>
Or:
<syntaxhighlight lang="
Alert( "Hello, world!" )
</syntaxhighlight>
Or, enclosed in an explicit procedure:
<syntaxhighlight lang="
PROCEDURE Main()
|