fork download
  1. Imports System
  2.  
  3. Public Module Module1
  4. Public Sub Main()
  5. For i As Integer = 0 To 9 : Console.WriteLine(i & ", ") : Next
  6. End Sub
  7. End Module
  8.  
  9. 'https://pt.stackoverflow.com/q/271817/101
Success #stdin #stdout 0.02s 14892KB
stdin
Standard input is empty
stdout
0, 
1, 
2, 
3, 
4, 
5, 
6, 
7, 
8, 
9,