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