Posting Code

From AutoIt Wiki
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)