Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Create a new programming language?

Create a new programming language?

Scheduled Pinned Locked Moved The Lounge
game-devtutorialquestion
79 Posts 33 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Brandon X12000

    Is there a way to create a programming language without using an existing programming language? or to create it from scratch or create it in machine/binary code or assembly code? Also some other questions that are optional that you may answer: - Is there a way for a programming language to be "all-purpose"? (for example this programming language can be used to make games, models, simple applications (like calculators) or anything and EVERYTHING you can imagine) - Is there a way for a programming language to be "self-sustained"? (for example you don't need more than one language like "Lua" to run a massive game like "World of Warcraft" or "Command and Conquer" or any of those games out there or this language does not need support of any kind to run) Any answers will be fully-appreciated. :) Regards, Brandon Proud Member of "The Code Project"

    P Offline
    P Offline
    PIEBALDconsult
    wrote on last edited by
    #8

    Brandon-hbx12000 wrote:

    Is there a way to create a programming language without using an existing programming language?

    Yes, but implementing it may be difficult.

    Brandon-hbx12000 wrote:

    in machine/binary code or assembly code?

    At least for version one; after that, write your compiler in the new language.

    Brandon-hbx12000 wrote:

    be "all-purpose"?

    Only within certain limits. Make it do what you need it to do and then add features as needed or requested.

    Brandon-hbx12000 wrote:

    be "self-sustained"?

    That depends more on what the developer using the language wants to do than on the language itself.

    R 1 Reply Last reply
    0
    • B Brandon X12000

      Is there a way to create a programming language without using an existing programming language? or to create it from scratch or create it in machine/binary code or assembly code? Also some other questions that are optional that you may answer: - Is there a way for a programming language to be "all-purpose"? (for example this programming language can be used to make games, models, simple applications (like calculators) or anything and EVERYTHING you can imagine) - Is there a way for a programming language to be "self-sustained"? (for example you don't need more than one language like "Lua" to run a massive game like "World of Warcraft" or "Command and Conquer" or any of those games out there or this language does not need support of any kind to run) Any answers will be fully-appreciated. :) Regards, Brandon Proud Member of "The Code Project"

      R Offline
      R Offline
      Rage
      wrote on last edited by
      #9

      Brandon-hbx12000 wrote:

      Is there a way to create a programming language without using an existing programming language?

      The language, yes. The compiler, well not really. When your language is sufficiently mature, you can write the compiler in your own language. :rolleyes:

      Brandon-hbx12000 wrote:

      Is there a way for a programming language to be "all-purpose"?

      Unless the langugage is really paltform oriented, all languages can be used to do anything, But that does not mean it always makes sense.

      Brandon-hbx12000 wrote:

      Is there a way for a programming language to be "self-sustained"?

      Again, you can do pretty much everything using only one language, provided that APIs are provided to access all you need to access. If there is no API to handle communication, then you can't reprogram WoW... Multi-language apps are so because you usually use the right tool to achieve the right task. But noone prevents you from using a screwdriver to hammer a nail.

      R 1 Reply Last reply
      0
      • N Nagy Vilmos

        Mark, I suggested here as it's not a programming question per se, but a theory question. I believe that, even though it has some homeworkiness about it, it's not too bad a subject.


        Panic, Chaos, Destruction. My work here is done. Drink. Get drunk. Fall over - P O'H OK, I will win to day or my name isn't Ethel Crudacre! - DD Ethel Crudacre I cannot live by bread alone. Bacon and ketchup are needed as well. - Trollslayer Have a bit more patience with newbies. Of course some of them act dumb - they're often *students*, for heaven's sake - Terry Pratchett

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #10

        Nagy Vilmos wrote:

        even though it has some homeworkiness about it

        It could only be more homeworky if it still had the bit that said "Section A will be worth 40 marks...".

        Every man can tell how many goats or sheep he possesses, but not how many friends.

        1 Reply Last reply
        0
        • B Brandon X12000

          Is there a way to create a programming language without using an existing programming language? or to create it from scratch or create it in machine/binary code or assembly code? Also some other questions that are optional that you may answer: - Is there a way for a programming language to be "all-purpose"? (for example this programming language can be used to make games, models, simple applications (like calculators) or anything and EVERYTHING you can imagine) - Is there a way for a programming language to be "self-sustained"? (for example you don't need more than one language like "Lua" to run a massive game like "World of Warcraft" or "Command and Conquer" or any of those games out there or this language does not need support of any kind to run) Any answers will be fully-appreciated. :) Regards, Brandon Proud Member of "The Code Project"

          S Offline
          S Offline
          S Houghtelin
          wrote on last edited by
          #11

          Brandon-hbx12000 wrote:

          create it from scratch or create it in machine/binary code or assembly code?

          Speaking as a long time assembly programmer. Yes and no, It is possible fill an Olympic size pool just using teaspoons or even using cups, but would the effort be worth it? Would the amount of time needed to do so be time well spent? The big question is why? When there is a more “efficient” or faster method to do so why not take advantage. To create something entirely out of scratch requires intimate knowledge of all the involved systems, memory handling, stack management, how to draw all those pixels on the display in just the right way, take in the user control and respond accordingly as the list goes on. Then have that work across different hardware platforms... It would indeed be a daunting task.

          It was broke, so I fixed it.

          D 1 Reply Last reply
          0
          • S S Houghtelin

            Brandon-hbx12000 wrote:

            create it from scratch or create it in machine/binary code or assembly code?

            Speaking as a long time assembly programmer. Yes and no, It is possible fill an Olympic size pool just using teaspoons or even using cups, but would the effort be worth it? Would the amount of time needed to do so be time well spent? The big question is why? When there is a more “efficient” or faster method to do so why not take advantage. To create something entirely out of scratch requires intimate knowledge of all the involved systems, memory handling, stack management, how to draw all those pixels on the display in just the right way, take in the user control and respond accordingly as the list goes on. Then have that work across different hardware platforms... It would indeed be a daunting task.

            It was broke, so I fixed it.

            D Offline
            D Offline
            Dalek Dave
            wrote on last edited by
            #12

            You could just bodge something together over a weekend and call it PHP.

            ------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] Trolls[^]

            S 1 Reply Last reply
            0
            • D Dalek Dave

              You could just bodge something together over a weekend and call it PHP.

              ------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] Trolls[^]

              S Offline
              S Offline
              S Houghtelin
              wrote on last edited by
              #13

              Dalek Dave wrote:

              PHP

              Isn’t that what they use to anesthetize large animals?

              It was broke, so I fixed it.

              D 1 Reply Last reply
              0
              • S S Houghtelin

                Dalek Dave wrote:

                PHP

                Isn’t that what they use to anesthetize large animals?

                It was broke, so I fixed it.

                D Offline
                D Offline
                Dalek Dave
                wrote on last edited by
                #14

                I need to go on a diet.

                ------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] Trolls[^]

                S 1 Reply Last reply
                0
                • B Brandon X12000

                  Is there a way to create a programming language without using an existing programming language? or to create it from scratch or create it in machine/binary code or assembly code? Also some other questions that are optional that you may answer: - Is there a way for a programming language to be "all-purpose"? (for example this programming language can be used to make games, models, simple applications (like calculators) or anything and EVERYTHING you can imagine) - Is there a way for a programming language to be "self-sustained"? (for example you don't need more than one language like "Lua" to run a massive game like "World of Warcraft" or "Command and Conquer" or any of those games out there or this language does not need support of any kind to run) Any answers will be fully-appreciated. :) Regards, Brandon Proud Member of "The Code Project"

                  S Offline
                  S Offline
                  Slacker007
                  wrote on last edited by
                  #15

                  Sorry you were one voted a couple of times. Good questions.

                  Just along for the ride. "the meat from that butcher is just the dogs danglies, absolutely amazing cuts of beef." - DaveAuld (2011)
                  "No, that is just the earthly manifestation of the Great God Retardon." - Nagy Vilmos (2011)

                  1 Reply Last reply
                  0
                  • B Brandon X12000

                    Thanks...Nagy Vilmos a member suggested that I posted it here.

                    R Offline
                    R Offline
                    R Giskard Reventlov
                    wrote on last edited by
                    #16

                    Ah, then Nagy deserves the vitriol! Trouble is, it smacks of being a programming question with the bonus of looking very much like a homework question. Note, however, that my response was meant to be somewhat sarcastic. I shall also reverse my one vote based on the fact that you was conned into putting it into the lounge in the first place! :-)

                    "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                    S 1 Reply Last reply
                    0
                    • N Nagy Vilmos

                      Mark, I suggested here as it's not a programming question per se, but a theory question. I believe that, even though it has some homeworkiness about it, it's not too bad a subject.


                      Panic, Chaos, Destruction. My work here is done. Drink. Get drunk. Fall over - P O'H OK, I will win to day or my name isn't Ethel Crudacre! - DD Ethel Crudacre I cannot live by bread alone. Bacon and ketchup are needed as well. - Trollslayer Have a bit more patience with newbies. Of course some of them act dumb - they're often *students*, for heaven's sake - Terry Pratchett

                      R Offline
                      R Offline
                      R Giskard Reventlov
                      wrote on last edited by
                      #17

                      See my response to your victim friend below... :)

                      "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                      1 Reply Last reply
                      0
                      • D Dalek Dave

                        I need to go on a diet.

                        ------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] Trolls[^]

                        S Offline
                        S Offline
                        S Houghtelin
                        wrote on last edited by
                        #18

                        As long as you follow the write prescription you’ll do fine. :)

                        It was broke, so I fixed it.

                        D 1 Reply Last reply
                        0
                        • S S Houghtelin

                          As long as you follow the write prescription you’ll do fine. :)

                          It was broke, so I fixed it.

                          D Offline
                          D Offline
                          Dalek Dave
                          wrote on last edited by
                          #19

                          Ah, you are offering me Perls of wisdom.

                          ------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] Trolls[^]

                          S 1 Reply Last reply
                          0
                          • D Dalek Dave

                            Ah, you are offering me Perls of wisdom.

                            ------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] Trolls[^]

                            S Offline
                            S Offline
                            S Houghtelin
                            wrote on last edited by
                            #20

                            As long as I don't Lisp, most poeple understand.

                            It was broke, so I fixed it.

                            D 1 Reply Last reply
                            0
                            • S S Houghtelin

                              As long as I don't Lisp, most poeple understand.

                              It was broke, so I fixed it.

                              D Offline
                              D Offline
                              Dalek Dave
                              wrote on last edited by
                              #21

                              This is the Forth pun on the trot! But enough of this Smalltalk.

                              ------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] Trolls[^]

                              R 1 Reply Last reply
                              0
                              • B Brandon X12000

                                Is there a way to create a programming language without using an existing programming language? or to create it from scratch or create it in machine/binary code or assembly code? Also some other questions that are optional that you may answer: - Is there a way for a programming language to be "all-purpose"? (for example this programming language can be used to make games, models, simple applications (like calculators) or anything and EVERYTHING you can imagine) - Is there a way for a programming language to be "self-sustained"? (for example you don't need more than one language like "Lua" to run a massive game like "World of Warcraft" or "Command and Conquer" or any of those games out there or this language does not need support of any kind to run) Any answers will be fully-appreciated. :) Regards, Brandon Proud Member of "The Code Project"

                                L Offline
                                L Offline
                                Lost User
                                wrote on last edited by
                                #22

                                Anyone can right a language form the ground up. You just need the instruction set for the processor. I would not recomend it though unless you are just trying to prove you can do it. If you want to make anything useful stick with the higher level languages. I think most have said yes to the all-purpose but I would disagree. The reason being is hardware related. The industry has gone through some cycles in the last decade or so that should prove this to anyone that has doubts. Web based applications stormed the industry because of the "all-purpose" aspect. One team one mission total, one failure. Web apps are great but you just can't beat a language that is talking to your specified hardware. In normal practice yes, but when you talk about speacialized hardware the all purpose languages tend to be 10 steps behind. And even when they do make those ten steps forward, it often comes with some serious baggage. Take for example parallel programming. This has been one of the main targets for the .Net framework in the more recent releases. However, things like CUDA have been perfecting it on the GPU for a few years now. This is just one example. Any time you find spealized hardware, you will often find speacialized software that will outperform the "all-purpose" software for years to come. As for "Self-Sustained", it just so happens this is related to the second "all-purpose". By adapting in other languages it is one less component that need be targets. It goes with the logic of why re-invent the wheel? Once the API is to combersome it is time to extend the so called "all-purpose" language.

                                Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.

                                K 1 Reply Last reply
                                0
                                • B Brandon X12000

                                  Is there a way to create a programming language without using an existing programming language? or to create it from scratch or create it in machine/binary code or assembly code? Also some other questions that are optional that you may answer: - Is there a way for a programming language to be "all-purpose"? (for example this programming language can be used to make games, models, simple applications (like calculators) or anything and EVERYTHING you can imagine) - Is there a way for a programming language to be "self-sustained"? (for example you don't need more than one language like "Lua" to run a massive game like "World of Warcraft" or "Command and Conquer" or any of those games out there or this language does not need support of any kind to run) Any answers will be fully-appreciated. :) Regards, Brandon Proud Member of "The Code Project"

                                  L Offline
                                  L Offline
                                  Lost User
                                  wrote on last edited by
                                  #23

                                  Complex games like World of Warcraft usually develop their own proprietary high level scripting language and communication protocols. So yeah. There are several abstraction layers in any complex system. Edit: Actually these days nobody needs a new low level language, C is prety good for that. What is lacking maybe is a high level modern language tuned for specific types of applications like the web.

                                  1 Reply Last reply
                                  0
                                  • R R Giskard Reventlov

                                    Ah, then Nagy deserves the vitriol! Trouble is, it smacks of being a programming question with the bonus of looking very much like a homework question. Note, however, that my response was meant to be somewhat sarcastic. I shall also reverse my one vote based on the fact that you was conned into putting it into the lounge in the first place! :-)

                                    "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                                    S Offline
                                    S Offline
                                    Slacker007
                                    wrote on last edited by
                                    #24

                                    Even if it was a homework question, where do you suggest he get the answer, from some other website; his textbook maybe? I have seen worse in the Lounge with less negative reception. Aren't we here to help. I think his questions are more refreshing then hearing another bad joke or another instance of the word bacon. ;)

                                    Just along for the ride. "the meat from that butcher is just the dogs danglies, absolutely amazing cuts of beef." - DaveAuld (2011)
                                    "No, that is just the earthly manifestation of the Great God Retardon." - Nagy Vilmos (2011)

                                    R J 2 Replies Last reply
                                    0
                                    • B Brandon X12000

                                      Is there a way to create a programming language without using an existing programming language? or to create it from scratch or create it in machine/binary code or assembly code? Also some other questions that are optional that you may answer: - Is there a way for a programming language to be "all-purpose"? (for example this programming language can be used to make games, models, simple applications (like calculators) or anything and EVERYTHING you can imagine) - Is there a way for a programming language to be "self-sustained"? (for example you don't need more than one language like "Lua" to run a massive game like "World of Warcraft" or "Command and Conquer" or any of those games out there or this language does not need support of any kind to run) Any answers will be fully-appreciated. :) Regards, Brandon Proud Member of "The Code Project"

                                      M Offline
                                      M Offline
                                      Michael Bergman
                                      wrote on last edited by
                                      #25

                                      Yes. I won't bother with the explanation as it is intuitively obvious.

                                      m.bergman

                                      -- For Bruce Schneier, quanta only have one state : afraid.

                                      1 Reply Last reply
                                      0
                                      • S Slacker007

                                        Even if it was a homework question, where do you suggest he get the answer, from some other website; his textbook maybe? I have seen worse in the Lounge with less negative reception. Aren't we here to help. I think his questions are more refreshing then hearing another bad joke or another instance of the word bacon. ;)

                                        Just along for the ride. "the meat from that butcher is just the dogs danglies, absolutely amazing cuts of beef." - DaveAuld (2011)
                                        "No, that is just the earthly manifestation of the Great God Retardon." - Nagy Vilmos (2011)

                                        R Offline
                                        R Offline
                                        R Giskard Reventlov
                                        wrote on last edited by
                                        #26

                                        Slacker007 wrote:

                                        where do you suggest he get the answer

                                        The appropriate forum; not the Lounge! (Did you see that I was being a little tongue in cheek?

                                        "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                                        S P 2 Replies Last reply
                                        0
                                        • R R Giskard Reventlov

                                          Slacker007 wrote:

                                          where do you suggest he get the answer

                                          The appropriate forum; not the Lounge! (Did you see that I was being a little tongue in cheek?

                                          "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                                          S Offline
                                          S Offline
                                          Slacker007
                                          wrote on last edited by
                                          #27

                                          mark merrens wrote:

                                          Did you see that I was being a little tongue in cheek?

                                          sorry, i don't speak in tongues. I think, and many others did as well, that the Lounge was just fine for this type of question. :)

                                          Just along for the ride. "the meat from that butcher is just the dogs danglies, absolutely amazing cuts of beef." - DaveAuld (2011)
                                          "No, that is just the earthly manifestation of the Great God Retardon." - Nagy Vilmos (2011)

                                          D 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups