RosettaCodeData/Task/Guess-the-number/AutoIt/guess-the-number.autoit
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

6 lines
185 B
Text

$irnd = Random(1, 10, 1)
$iinput = -1
While $input <> $irnd
$iinput = InputBox("Choose a number", "Please chosse a Number between 1 and 10")
WEnd
MsgBox(0, "Success", "Well guessed!")