Quote:
Originally Posted by InfamousNoone
/agree
1 epic failure coming up
|
sorry, but i'd have to strongly disagree...
because basic is such an old language (i started w/ basic)... it makes for a great language to understand the fundamentals of programming...
NOBODY is saying VB, we're saying "BASIC"... i think nobody should start off learning programming from VB, u miss out on a lot of things
but as i was saying... BASIC is every straight foward, so the OP would understand the concepts of programming a lot better then many other languages
Examples:
Code:
For A = 0 To 20
*** Perform code here ****
Next A
is more straight foward then
Code:
For (A=0; A <= 20; A++)
{
*** Perform code here ****
}
Example:
Code:
If B > 0 Then
*** Perform code here ****
End If
Compared to
Code:
If (B > 0)
{
*** Perform code here ****
{