This website works better with JavaScript
Home
Explore
Project
Register
Sign In
lyq
/
AutoHotkey-Script
Watch
1
Star
24
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
292a6e7e09
Branches
Tags
master
AutoHotkey-Scri...
/
test
/
3_命令和函数 - Copy.ahk
3_命令和函数 - Copy.ahk
112 B
History
Raw
1
2
3
4
5
6
7
8
9
10
11
12
;Command, 参数1, 参数2, 参数3
age=18
^j::
MsgBox, Hello
MsgBox,%age%
Return
GetAge(){
MsgBox,%age%
}