Thread: Multi-language programs?

  1. #16
    aoeuhtns
    Join Date
    Jul 2005
    Posts
    581
    If you want to make your own language, you should start by looking at some of the other programming languages around. Many are not the same -- take a look at Scheme, Ruby, Forth, Joy, Lisp, Io, and maybe some esoteric ones like Ook!

    You don't need a compiler; you only need an interpreter, which is easier.

    If you create an RPN calculator, you are not far from creating a programming language. This happened to me accidentally. Looking up what "RPN" means is up to you, though.
    Last edited by Rashakil Fol; 07-09-2005 at 07:04 PM.

  2. #17
    myNegReal
    Join Date
    Jun 2005
    Posts
    100
    You could also make up a scripting language, and just make a program that will run it. Kinda like how HTML and such works, it's not actually compiled, just saved as a file, and read in, based on the input do whatever. Sort of what Rashakil was talking about as an interpreter, just basically reads in text and parses it and "runs" it.

  3. #18
    Registered User
    Join Date
    Sep 2001
    Posts
    4,912
    HTML is not a scripting language, nor a programming language. It is, as it's name explicitly says, a markup language. It's used for documents. Perhaps a more appropriate analogy might be PHP.

  4. #19
    *this
    Join Date
    Mar 2005
    Posts
    498
    Quote Originally Posted by major_small
    you'd have to take the whole platform into consideration: AMD or Intel? 32 or 64? windows or linux? etc. etc. etc.
    now thats a hastle.

    Some day id like to make a language that translates to win32api mixed with c++ to make windows calls a little easier.....

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. The value of learning a new programming language
    By h3ro in forum General Discussions
    Replies: 21
    Last Post: 06-13-2009, 01:48 AM
  2. ASM to C language
    By TAZIN in forum C Programming
    Replies: 22
    Last Post: 06-03-2009, 06:29 AM
  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. Enough language discussions.
    By VirtualAce in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 06-13-2004, 09:59 AM