1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-04-04 22:42:43 +02:00

Merge pull request #1130 from skvale/master

Little fix to Visual Basic
This commit is contained in:
ven 2015-06-09 19:02:11 +02:00
commit e5434d9537

View File

@ -159,7 +159,7 @@ Module Module1
Console.Write(a.ToString() + " - " + b.ToString())
Console.WriteLine(" = " + e.ToString.PadLeft(3))
Console.Write(a.ToString() + " / " + b.ToString())
Console.WriteLine(" = " + e.ToString.PadLeft(3))
Console.WriteLine(" = " + f.ToString.PadLeft(3))
Console.ReadLine()
End Sub
@ -189,7 +189,7 @@ Module Module1
Console.Write(a.ToString() + " - " + b.ToString())
Console.WriteLine(" = " + e.ToString.PadLeft(3))
Console.Write(a.ToString() + " / " + b.ToString())
Console.WriteLine(" = " + e.ToString.PadLeft(3))
Console.WriteLine(" = " + f.ToString.PadLeft(3))
Console.ReadLine()
'Ask the question, does the user wish to continue? Unfortunately it
'is case sensitive.