Posting Code: Difference between revisions

From AutoIt Wiki
Jump to navigation Jump to search
No edit summary
 
(No difference)

Latest revision as of 00:16, 24 June 2009

In order to post code on the Wiki you use the following tags:

<syntaxhighlight lang="autoit">
; your code here
</syntaxhighlight>

This is the result of the above tags:

; your code here

Or another example:

$s = "Hello World"
MsgBox(0, "", $s)