diff options
author | ven <vendethiel@hotmail.fr> | 2015-06-09 19:02:11 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-06-09 19:02:11 +0200 |
commit | e5434d95374805d3ad6ca87254f9e00c3969a253 (patch) | |
tree | a01aa9e96eac8e4beaef3b8de18fe82da91febef | |
parent | 0eb127c84c2271705fc6383a3580b336cd906736 (diff) | |
parent | b4a6669d44e57c6b5c7338fea42d0e55182258f8 (diff) |
Merge pull request #1130 from skvale/master
Little fix to Visual Basic
-rw-r--r-- | visualbasic.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/visualbasic.html.markdown b/visualbasic.html.markdown index fbfa500d..00d61843 100644 --- a/visualbasic.html.markdown +++ b/visualbasic.html.markdown @@ -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. |