Showing posts with label VBscript. Show all posts
Showing posts with label VBscript. Show all posts

Sunday, April 8, 2007

System.Collections.Queue from VBSCRIPT

set coll = CreateObject("System.Collections.Queue")
coll.Enqueue "Bob"
coll.Enqueue "Joe"
WScript.Echo coll.Dequeue()
WScript.Echo coll.Dequeue()