Talk:Tutorial Core Language: Difference between revisions

From AutoIt Wiki
Jump to navigation Jump to search
 
(→‎Code maintenance: new section)
Line 20: Line 20:


[[User:Jaberwocky6669|Jaberwocky6669]] 17:52, 30 April 2010 (UTC)
[[User:Jaberwocky6669|Jaberwocky6669]] 17:52, 30 April 2010 (UTC)
== Code maintenance  ==
NOTE: It would be nice if we could keep most of the code in here "runable", so that a user reading around can just copy and paste the code into SciTE for a quick user friendly demonstration. (Html comment in main page, by --[[user:FlutterShy|FlutterShy]])
:The same goose for all AutoIt code examples on the wiki of course. With larger code examples having a bigger chance to break over time (due to AutoIt script braking version changes.). To counter act that, including the AutoIt version that was used to test it might help here (last available production, or beta when its a AutoIt beta related code example). --[[User_talk:IEvKI3gv9Wrkd41u|<i><font color="#666" size="2px">.MvGulik.</font></i>]] 09:26, 10 November 2012 (GMT)

Revision as of 09:26, 10 November 2012

Precedence question

Under 'Operators' and 'Precedence' is this statement:

"Similarly for Or

If $x <> 5 Or $x <> 6 Then ...

will evaluate $x <> 5 and if it returns true will not evaluate $x <> 6"



Is this right?

If say '$x = 4' then '$x <> 5' will evaluate to 'False' and then '$x <> 6' will be evaluated.

Never mind! I see now...

Jaberwocky6669 17:52, 30 April 2010 (UTC)

Code maintenance

NOTE: It would be nice if we could keep most of the code in here "runable", so that a user reading around can just copy and paste the code into SciTE for a quick user friendly demonstration. (Html comment in main page, by --FlutterShy)

The same goose for all AutoIt code examples on the wiki of course. With larger code examples having a bigger chance to break over time (due to AutoIt script braking version changes.). To counter act that, including the AutoIt version that was used to test it might help here (last available production, or beta when its a AutoIt beta related code example). --.MvGulik. 09:26, 10 November 2012 (GMT)