Guest User

Untitled

a guest
Apr 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Module Mynameis
  2.     Sub main()
  3.         For i = 1 To 10 Step 1
  4.  
  5.             Dim strName As String
  6.  
  7.             Console.WriteLine("Hello, what is your name?")
  8.  
  9.             strName = Console.ReadLine
  10.  
  11.             Console.WriteLine("Your name is {0}", strName)
  12.  
  13.         Next
  14.  
  15.  
  16.     End Sub
  17.  
  18. End Module
Add Comment
Please, Sign In to add comment