From 6cc36cb0902f1b29424b6e52b8ddfaea68c88563 Mon Sep 17 00:00:00 2001 From: ven Date: Thu, 1 Dec 2016 15:19:08 +0100 Subject: fix #2589 --- visualbasic.html.markdown | 8 -------- 1 file changed, 8 deletions(-) (limited to 'visualbasic.html.markdown') diff --git a/visualbasic.html.markdown b/visualbasic.html.markdown index 0371e6f6..f081b907 100644 --- a/visualbasic.html.markdown +++ b/visualbasic.html.markdown @@ -272,11 +272,3 @@ Module Module1 End Module ``` - -## References - -I learnt Visual Basic in the console application. It allowed me to understand the principles of computer programming to go on to learn other programming languages easily. - -I created a more indepth Visual Basic tutorial for those who would like to learn more. - -The entire syntax is valid. Copy the and paste in to the Visual Basic compiler and run (F5) the program. -- cgit v1.2.3 From 985d23a52b76593a120adff5381c2df3a80fe298 Mon Sep 17 00:00:00 2001 From: HairyFotr Date: Wed, 23 Aug 2017 10:14:39 +0200 Subject: Fix a bunch of typos --- visualbasic.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'visualbasic.html.markdown') diff --git a/visualbasic.html.markdown b/visualbasic.html.markdown index f081b907..cbeb36b5 100644 --- a/visualbasic.html.markdown +++ b/visualbasic.html.markdown @@ -12,7 +12,7 @@ Module Module1 'A Quick Overview of Visual Basic Console Applications before we dive 'in to the deep end. 'Apostrophe starts comments. - 'To Navigate this tutorial within the Visual Basic Complier, I've put + 'To Navigate this tutorial within the Visual Basic Compiler, I've put 'together a navigation system. 'This navigation system is explained however as we go deeper into this 'tutorial, you'll understand what it all means. -- cgit v1.2.3 From caa8993076365c3e650e82a3c5c970dca25ed4c4 Mon Sep 17 00:00:00 2001 From: Adam Bard Date: Sun, 4 Mar 2018 19:48:44 -0800 Subject: Assorted fixes --- visualbasic.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'visualbasic.html.markdown') diff --git a/visualbasic.html.markdown b/visualbasic.html.markdown index cbeb36b5..041641d3 100644 --- a/visualbasic.html.markdown +++ b/visualbasic.html.markdown @@ -5,7 +5,7 @@ contributors: filename: learnvisualbasic.vb --- -```vb +```vbnet Module Module1 Sub Main() -- cgit v1.2.3 From 286339ecc8b46650cc21da7db0af60b68f5d9e93 Mon Sep 17 00:00:00 2001 From: Divay Prakash Date: Wed, 15 Aug 2018 17:29:29 +0530 Subject: Fix build error in 'build/docs/visualbasic/index.html' --- visualbasic.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'visualbasic.html.markdown') diff --git a/visualbasic.html.markdown b/visualbasic.html.markdown index 041641d3..63f224b7 100644 --- a/visualbasic.html.markdown +++ b/visualbasic.html.markdown @@ -5,7 +5,7 @@ contributors: filename: learnvisualbasic.vb --- -```vbnet +``` Module Module1 Sub Main() -- cgit v1.2.3 From ead54f10e8df2fdeef6325554e3a8a6d8de9c959 Mon Sep 17 00:00:00 2001 From: satory-ra Date: Wed, 13 Mar 2019 23:03:26 +0300 Subject: Typo --- visualbasic.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'visualbasic.html.markdown') diff --git a/visualbasic.html.markdown b/visualbasic.html.markdown index 63f224b7..221c1eb3 100644 --- a/visualbasic.html.markdown +++ b/visualbasic.html.markdown @@ -139,7 +139,7 @@ Module Module1 'Five Private Sub WorkingCalculator() - Console.Title = "The Working Calculator| Learn X in Y Minutes" + Console.Title = "The Working Calculator | Learn X in Y Minutes" 'However if you'd like the calculator to subtract, divide, multiple and 'add up. 'Copy and paste the above again. -- cgit v1.2.3