fork download
  1. Option Explicit On
  2. Option Strict On
  3. Option Compare Binary
  4. REM Option Infer Off
  5.  
  6. Public Class Test1
  7. Public Shared Sub Main()
  8.  
  9. Dim a As Integer = 3
  10. For Each a As Char in "abc".ToCharArray()
  11. System.Console.WriteLine(a)
  12. Next
  13. System.Console.WriteLine(a)
  14.  
  15. End Sub
  16. End Class
  17.  
Success #stdin #stdout 0.07s 13504KB
stdin
Standard input is empty
stdout
a
b
c
3