Posting Code

From AutoIt Wiki
Revision as of 00:16, 24 June 2009 by Manadar (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)