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

123456789101112131415161718
  1. ; @Author : liuyuqi
  2. ; @Contact : liuyuqi.gov@msn.cn
  3. ; @Time : 2015/05/11
  4. ; @Version : 1.0
  5. ; @Desc : 命令和函数
  6. ;Command, 参数1, 参数2, 参数3
  7. age=18
  8. ^j::
  9. MsgBox, Hello
  10. MsgBox,%age%
  11. Return
  12. GetAge(){
  13. MsgBox,%age%
  14. }