RosettaCodeData/Task/Introspection/AutoHotkey/introspection.ahk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

10 lines
196 B
AutoHotkey

if (A_AhkVersion < "1.0.48.03")
{
MsgBox % "you are using" . A_AhkVersion . "`nplease upgrade to" . "1.0.48.03"
ExitApp
}
bloop = -3
if bloop
if IsFunc("abs")
MsgBox % abs(bloop)
return