Update visualbasic.html.markdown (#4295)

* The comment "Ouputs the above" was misleading, changed it to a more apt comment ("Pausing the execution")
This commit is contained in:
Vishvanathan K 2022-01-03 21:47:27 +05:30 committed by GitHub
parent d24f135208
commit f39dcdd44e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,8 @@ Module Module1
Console.WriteLine("Hello, What is your name? ") 'Ask the user their name. Console.WriteLine("Hello, What is your name? ") 'Ask the user their name.
username = Console.ReadLine() 'Stores the users name. username = Console.ReadLine() 'Stores the users name.
Console.WriteLine("Hello " + username) 'Output is Hello 'Their name' Console.WriteLine("Hello " + username) 'Output is Hello 'Their name'
Console.ReadLine() 'Outputs the above. Console.ReadLine() 'Pauses the execution for user to read
'The above will ask you a question followed by printing your answer. 'The above will ask you a question followed by printing your answer.
'Other variables include Integer and we use Integer for whole numbers. 'Other variables include Integer and we use Integer for whole numbers.
End Sub End Sub