crayon-syntax-highlighter/util/sample/autoit.txt

11 lines
458 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
;Finds the average of numbers specified by a user.
;The numbers must be delimited by commas.
#NoTrayIcon
#include <GUIConstantsEx.au3>
#include <Array.au3>
;region---------------GUI-----------------------
$form = GUICreate("Average Finder", 300, 100)
$label = GUICtrlCreateLabel("Enter the numbers to be averaged separated by commas", 19, 0)
$textbox = GUICtrlCreateInput("", 20, 20, 220)
GUISetState()
;endregion---------------END GUI-----------------------