fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. Dim arr as Byte() = New Byte(16) {1, 2, 3, 4, 5, 6, 7, 8}
  6. For Each b As Byte in arr
  7. Console.Write("{0} ", CInt(b))
  8. Next
  9. End Sub
  10. End Class
Success #stdin #stdout 0.07s 13464KB
stdin
Standard input is empty
stdout
1 2 3 4 5 6 7 8 0 0 0 0 0 0 0 0 0