Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Module Module1

Dim X, Y As Integer
Enum days
sun
mon
tues
wed
thurs
fri
sat
End Enum
Sub Main()
X = days.fri
Y = days.sat
Console.WriteLine(X)
Console.WriteLine(Y)
Console.ReadKey()

End Sub

End Module

You might also like