12
1
Imports System.Collections.Generic
2
Public Module Module1
3
Public Sub Main()
4
'Declare a Queue(Of String) that will represent a line of customers
5
Dim line As Queue(Of String) = New Queue(Of String)
6
7
'Fill in the line
8
line.Enqueue("David")
9
line.Enqueue("Michael")
10
line.Enqueue("Stephen")
11
End Sub
12
End Module
Cached Result