Page 2 of 2 FirstFirst 12
Results 17 to 25 of 25

Thread: A good language to start with?

  1. #17
    HEXUS.social member Agent's Avatar
    Join Date
    Jul 2003
    Location
    Internet
    Posts
    19,185
    Thanks
    738
    Thanked
    1,609 times in 1,048 posts
    Originally posted by tonicblue
    From My experience
    Start with Visual Basic or ASP (more or less the same) so you have a basic understanding of what the hell is going on. after a month or so when u can problem solve and you know how to use all statements and loops and lots of other stuff, (a good knowlege of how it works), Look at PHP or C/C++. If ur switching to Linux PHP or C/C++ would be a nice one but they look impossible to learn if you have no experience.
    If you find it like this, fair enough, but in my experience, PHP syntax and programing is much easier than ASP's - loops especially, i don't know how you could make loops any simpler in PHP.
    PHP loop example :

    PHP Code:
    <?
    //make array
    $numberarray = array( 1234);

    //for each number of the array, set it to $singlenumber while in the loop
    foreach ( $numberarray as $singlenumber )

    //start loop


    //say the number and start a new line
    echo "number  $singlenumber <br>";

    //end loop
    }

    ?>
    super easy
    Quote Originally Posted by Saracen View Post
    And by trying to force me to like small pants, they've alienated me.

  2. #18
    c0w
    c0w is offline
    Member
    Join Date
    Aug 2003
    Posts
    80
    Thanks
    0
    Thanked
    0 times in 0 posts
    depends what type of stuff you wanna do with the language, ie the platform. if u wanna make like windows software then yeah c++ and java are good but i wouldn't recommend jumpin rite in and playing with them because yeah it will be all good at the start when it's nice and easy but when you want to start doing harder thing you will find your self gettin stuck very quickly start with somethin easy like vb and stuff learn structure and get with xml as well and get them running together then start to dabble with a bit of c++ and all you will find this a lot easy and less complicated.

    c0w

  3. #19
    | 4|\/| 31337!!!!!!1
    Join Date
    Jul 2003
    Location
    Stourbridge, West midlands, England
    Posts
    445
    Thanks
    0
    Thanked
    0 times in 0 posts
    Originally posted by Agent
    If you find it like this, fair enough, but in my experience, PHP syntax and programing is much easier than ASP's - loops especially, i don't know how you could make loops any simpler in PHP.
    PHP loop example :

    PHP Code:
    <?
    //make array
    $numberarray = array( 1234);

    //for each number of the array, set it to $singlenumber while in the loop
    foreach ( $numberarray as $singlenumber )

    //start loop


    //say the number and start a new line
    echo "number  $singlenumber <br>";

    //end loop
    }

    ?>
    super easy
    Yeah. it is a simple syntax Im glad I started coding in it, I just thought ASP was simpler cos its more english looking and i got scared off when i looked at PHP sample code. lol. hmmmm. PHP would probably be better to learn first thinking about it. Oh well. I know both now

    Arguing with an administrator is like kicking God in the nuts

  4. #20
    Senior Member
    Join Date
    Jul 2003
    Location
    Out There......
    Posts
    223
    Thanks
    1
    Thanked
    0 times in 0 posts
    Pascal is good starting point very old now, but you can get a free version of Pascal from Borland.

    Next step from Pascal is Delphi, Delphi is an object orientated evolution of Pascal very simple, and again i believe there is a free basic version of Delphi 7 thats available.

  5. #21
    Senior Member Nemeliza's Avatar
    Join Date
    Jul 2003
    Posts
    1,719
    Thanks
    1
    Thanked
    5 times in 5 posts
    I was taught Delphi at college. Its not a hard language to pick up, i was shown some OOP examples in Ielphi and i remember thinking "WTF is that!". Learning the syntax is a piece of cake, but understanding the logics and how to apply them is a motherf*r.

  6. #22
    Guest
    Join Date
    Sep 2003
    Location
    Northampton
    Posts
    67
    Thanks
    0
    Thanked
    0 times in 0 posts
    I'd suggest delphi, but ive been using it for years and years for a living so would be biased.

  7. #23
    Senior Member
    Join Date
    Aug 2003
    Posts
    326
    Thanks
    0
    Thanked
    0 times in 0 posts
    C++ / java / HTML

  8. #24
    Goat Boy
    Join Date
    Jul 2003
    Location
    Alexandra Park, London
    Posts
    2,428
    Thanks
    0
    Thanked
    0 times in 0 posts
    I don't think C++ would be a good language to start with !
    "All our beliefs are being challenged now, and rightfully so, they're stupid." - Bill Hicks

  9. #25
    Senior Member
    Join Date
    Jul 2003
    Posts
    232
    Thanks
    0
    Thanked
    0 times in 0 posts
    Originally posted by DaBeeeenster
    I don't think C++ would be a good language to start with !
    Agreed. Also HTML, whilst undeniably easy, is not a programming language as such, it's a markup language.

Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •