View Single Post
04-03-2010, 02:22 AM
#5
Village Genius is offline Village Genius
Village Genius's Avatar
Status: Geek
Join date: Apr 2006
Location: Denver, CO
Expertise: Software
Software: Chrome, Notepad++
 
Posts: 6,894
iTrader: 18 / 100%
 

Village Genius will become famous soon enough

  Old

The point is that the language teaches those concepts while not having a hard syntax. At the university I go to I am helping adults with programming because c was too hard of a starter. For instance:

C
Code:
#include <stdio.h>

int main()
{
printf("Hello World");
return 0;
}
VB
Code:
Imports System
Public Module modmain
   Sub Main()
     Console.WriteLine ("Hello World using Visual Basic!")
   End Sub
End Module
Bolded code is auto generated.

While the hello world example isn't the best comparison, VB is tons easier in almost every way. It seems far more suitable for a beginner.

Reply With Quote