Imports System
Public Class ABC
Dim x(3) As Integer
Public Sub Main()
x(0) = 12
Console.WriteLine(x(0))
End Sub
End Class