Stylized line drawing of mark playing the flute

Handy VBScript ASP syntax shortcut

How often have you done something like this in Classic ASP (VBScript)?

dim myDictset myDict = Server.CreateObject("Scripting.Dictionary")

Well, here's a nice little syntax shortcut that I've somehow managed to miss for the last 10 years.

dim myDict : set myDict = Server.CreateObject("Scripting.Dictionary")