Thread: new language

  1. #1

    Cool new language

    Does anyone know what the new programming language after Java is going to be, just wondering so I can get a head-start on learning it.

  2. #2
    Registered User
    Join Date
    Dec 2001
    Posts
    126
    I'm not sure, but I was just thinking about that the other day. It would be good to know.

  3. #3
    pronounced 'fib' FillYourBrain's Avatar
    Join Date
    Aug 2002
    Posts
    2,297
    there are new languages popping up constantly. most are ignored. but you want to know which will be popular? I don't suspect anyone here can tell you that for certain. C# with .NET seems to have the largest glimmer although it is suspect. C++ should keep you happy for now.
    "You are stupid! You are stupid! Oh, and don't forget, you are STUPID!" - Dexter

  4. #4
    I saw some language called RUBY or something like that is a mix of JAVA, C++, and some others and they were comparing it to C# and how much better it was to it.


    Here, I found something about it: http://www.ruby-lang.org/en/
    My Avatar says: "Stay in School"

    Rocco is the Boy!
    "SHUT YOUR LIPS..."

  5. #5
    ¡Amo fútbol!
    Join Date
    Dec 2001
    Posts
    2,138
    Have you ever seen how ugly RUBY is? It reminds me of VB[shutters].

  6. #6
    >>Have you ever seen how ugly RUBY is? It reminds me of VB[shutters].

    No, it's more like PERL or PHP or maybe Python although I haven't seen python code - Web programmers should be able to jump right into RUBY.
    My Avatar says: "Stay in School"

    Rocco is the Boy!
    "SHUT YOUR LIPS..."

  7. #7
    Registered User
    Join Date
    Aug 2001
    Posts
    403
    Ruby is more of a scripting-oriented language, and it's been around a while with not too large of a following. I've used it and I can't stand it, but feel free to give it a try.

    I'd say that there really is no "super language".. different fields have different languages, I'd recommend C++ and Python to give you a healthy mix. Python is incredibly easy to learn yet very powerful. Perl has a similar purpose to Python but perl is known for the fact that it's syntax often produces very hard to read code.

  8. #8
    Registered User adamviper's Avatar
    Join Date
    Nov 2002
    Posts
    132
    Pascal is going to make a comeback i just know it

  9. #9
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    I'm afraid nobody can tell you what the next big language will be. The future is notorious for being difficult to predict.

    >or maybe Python although I haven't seen python code
    Here's a quickie:
    Code:
    # A very simple GUI test of Python
    
    # Get GUI stuff
    from Tkinter import *
    
    # Create a class for displaying widgets
    class App:
      def __init__ ( self ):
        self.root = Tk()
        self.root.minsize ( 500, 300 )
    
        button = Button ( self.root, text = 'Click Me!', command = self.act )
        button.grid ( row = 0, column = 0 )
    
      def act ( self ):
        label = Label ( self.root, text = 'Woohoo!', font = 'bold' )
        label.grid ( columnspan = 2 )
    
    # Instance the class
    myapp = App()
    
    # Run!
    mainloop()
    -Prelude
    My best code is written with the delete key.

  10. #10
    Registered User
    Join Date
    Nov 2002
    Posts
    42

    How many languages does one need to know ???

    In my first sem of Computer Science, my instructor wanted me to learn two languages (C and Pascal (self-learning)). In the 2nd sem, I had a course on Object Oriented Programming (C++). So essentially, I have learnt something (if not a lot) of three different languages. How many more do I need to learn ??? Or is it better that I try to master one (or two ??) of the lnaguages that I already know ...

  11. #11
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >How many more do I need to learn ??? Or is it better that I try to master one (or two ??)
    It's good to be competent using at least two languages if you want to program professionally, but your goal should be to master as many as possible.

    -Prelude
    My best code is written with the delete key.

  12. #12
    Registered User
    Join Date
    Dec 2001
    Posts
    126
    I'm thinking of starting java soon, but I don't know how far I should get in c++ before I start in on java.

  13. #13
    Start coding in C++ and forget the rest - when you're proficient at C++ learning and moving over to other languages will be trivial since it's more or less of the same thing with different syntax.
    My Avatar says: "Stay in School"

    Rocco is the Boy!
    "SHUT YOUR LIPS..."

  14. #14
    Registered User
    Join Date
    Jun 2002
    Posts
    82
    I personally would recommend proficiency in at least one scripting language and one object-oriented programming language, that gives you the best of all worlds. I personally lean toward C++ as my OO language (although I really like Java and am learning more about it) and Perl as my scripting language (I have used Python only a little but it seems to me to be less well-established -- CPAN is your friend)

    OneStiffRod has a point though in that really once you have mastered one it makes it really easy to learn more; aside from OO-vs-procedural issues, the concepts are really the same, its just the syntax that changes.
    Claus Hetzer
    Compiler: Borland 5.5 (on Windows)
    Solaris CC (on Unix)
    Known Languages: C++, MATLAB, Perl, Java

  15. #15
    booyakasha
    Join Date
    Nov 2002
    Posts
    208
    If you only know java and/or c/c++ I recommend learning some languages that are very different such as ML, Scheme and Prolog. Learning these will give you a broader understanding of programming.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. What language did they make Java in?
    By jverkoey in forum A Brief History of Cprogramming.com
    Replies: 17
    Last Post: 07-03-2005, 04:18 PM
  2. Strange loop
    By D@rk_force in forum C++ Programming
    Replies: 22
    Last Post: 12-18-2004, 02:40 PM
  3. assembly language...the best tool for game programming?
    By silk.odyssey in forum Game Programming
    Replies: 50
    Last Post: 06-22-2004, 01:11 PM
  4. Language of choice after C++
    By gandalf_bar in forum A Brief History of Cprogramming.com
    Replies: 47
    Last Post: 06-15-2004, 01:20 AM
  5. Language Script..
    By vasanth in forum A Brief History of Cprogramming.com
    Replies: 12
    Last Post: 03-30-2003, 06:48 AM