Skip to content

Commit

Permalink
Adds AutoIt
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Nov 23, 2011
1 parent a41d2d0 commit 93c09b1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions autoit/README.md
@@ -0,0 +1,5 @@
Compile using the AU3 Wrapper directives as used at the top of the file.

The script defines a function that is called recursively. The forking quickly crashes AutoIt:

![Subject is dead, long live Subject](http://i.imgur.com/TBD88.png)
9 changes: 9 additions & 0 deletions autoit/subject-is-dead.au3
@@ -0,0 +1,9 @@
#AutoIt3Wrapper_Compression=4
#AutoIt3Wrapper_Change2CUI=y
#AutoIt3Wrapper_AU3Check_Stop_OnWarning=y

$subject = "[Subject] is dead, long live [Subject]"
While 1
$Subject = StringRegExpReplace($subject, "\[Subject\]", $subject)
ConsoleWrite($Subject)
WEnd

0 comments on commit 93c09b1

Please sign in to comment.