Imports System
Public Module Module1
Public Sub Main()
Dim x As integer
For x=1 To 10
Console.WriteLine("Value of x:{0}", x)
Next
End Sub
End Module