Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

building a new programming language like the ones you see in GameMaker software or scatch requires deep understanding of Window's binary code. This is not something you can finish in a few years, it takes maybe 10 to 20 years to completely make a new code language. If you only want to make it for games you still have a long way to do it since many of the important software like Geforce will not accept unknown language. This problem as been a thing since Linux and no one has still found a stable version for such.

I recommend not creating a new code language without help of at least 10,000 people, any  one else would just go learn C, C++ or HTML/CSS.

(1 edit)

Well no, the language has nothing to do with the operating system. Or maybe by Windows binary code you mean machine code, which is x86_64 on most PCs. It’s not hard per se, too, it just takes a while to absorb all of the topics (I’ve been building my own for a while now).

(To pizzaveloper) Ultimately, a language is nothing more than a document which describes how it works. An example may include the C standard specification, which you can find online. Now if you wish to create a program that reads source code of your language and does something with it, you need to look up compiler or interpreter design, and read books on those. This is a very deep rabbit hole, so you should be well aware on what you’re getting yourself into.

I've also had university lecturers tell me that the worst thing you can do is create a brand new programming language. They see it all the time from PhD students and the world doesn't need more programming languages when the existing ones work perfectly well for the tasks they were built to address.

the worst thing you can do is create a brand new programming language.

If your aim is profit, then sure. In an indie dev community there’s plenty of hobby developers that make all shorts of unusual projects for fun.

No point discouraging people that are looking to learn. Each person has their own motives.