It is used to assign optional variables, without assigning the previous ones.
sub test(optional a as string = "", optional b as string = "")
msgbox(a & b)
end sub
you can now do
test(b:= "blaat")
'in stead of
test("", "blaat")
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…