mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
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:
parent
d24f135208
commit
f39dcdd44e
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user