default.txt 341 B

12345678910111213141516
  1. #NoTrayIcon
  2. #AutoIt3Wrapper_Run_Tidy=Y
  3. #include <Misc.au3>
  4. _Singleton(@ScriptName) ; Allow only one instance
  5. example(0, 10)
  6. Func example($min, $max)
  7. For $i = $min To $max
  8. If Mod($i, 2) == 0 Then
  9. MsgBox(64, "Message", $i & ' is even number!')
  10. Else
  11. MsgBox(64, "Message", $i & ' is odd number!')
  12. EndIf
  13. Next
  14. EndFunc ;==>example