3_命令和函数 - Copy.ahk 112 B

123456789101112
  1. ;Command, 参数1, 参数2, 参数3
  2. age=18
  3. ^j::
  4. MsgBox, Hello
  5. MsgBox,%age%
  6. Return
  7. GetAge(){
  8. MsgBox,%age%
  9. }