;Ex1
outside := 111
function()
{
x := outside
MsgBox, % x
}
function();Ex2
outside := 111
function()
{
x := "outside"
x := %x%
MsgBox, % x
}
function()I can figure out the result of Ex1. But why the result of Ex2 is 111? I expect it same as Ex1.




