6 lines
68 B
AutoHotkey
6 lines
68 B
AutoHotkey
|
|
printAll(args*) {
|
||
|
|
for k,v in args
|
||
|
|
t .= v "`n"
|
||
|
|
MsgBox, %t%
|
||
|
|
}
|