Arithmetic/Integer: Difference between revisions

m
→‎{{header|AutoHotkey}}: Minor indentation and casing edit
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 70:
Gui, Add, Button, Default, Compute
Gui, Show
Return
return
 
ButtonCompute:
Gui, Submit
MsgBox,%
(Join`s"`n"
a "+" b " = " a+b
a "-" b " = " a-b
a "*" b " = " a*b
a "//" b " = " a//b " remainder " Mod(a,b)
a "**" b " = " a**b
)
; fallthrough
GuiClose:
ExitApp</lang>
 
=={{header|AWK}}==