fork download
  1. Imports System
  2. Imports System.Collections.Generic
  3.  
  4. Public Class Test
  5. Public Shared ReadOnly Sectors As List(Of Integer) = New List(Of Integer)(New Integer() {1,2,3,XXX})
  6. Public Const XXX As Integer = 14407
  7. Public Shared Sub Main()
  8. For Each i As Integer In Sectors
  9. Console.WriteLine(i)
  10. Next i
  11. End Sub
  12. End Class
Success #stdin #stdout 0.03s 24136KB
stdin
Standard input is empty
stdout
1
2
3
14407