+ 2
how people created programation language
Hello, did anyone knows how people create a programmation language like python, hmtl, java thanks for the response
3 Respostas
+ 2
html is not a programming language;
but anyways: by coding it! :-)
how people created the first programming language?
your question is similar, but creating a new language is easier based on something exists (compiler, interpreter, syntax, etc)
+ 2
☕︎︎AstroParrot✦
U sorta created a simple one!
+ 2
HTML is NOT a programming language. The name HTML itself (short for HyperText Markup Language) claimed that it is a markup language, not a programming language.
Basically, most (if not all) programming languages are created using a compiler or an interpreter.
A compiler or an interpreter translates the code you wrote (human-readable code) into machine code. The big difference between these two is: a compiler translates the whole code into machine code at once, and an interpreter executes your code line by line.
Syntaxes also play a huge role in making the programming language. Think of it as language grammar, when you're speaking to someone but you have a poor choice of words and your grammar is bad, it might be very hard for them to understand what you said.
There might be some other factors during the process of creating a programming language that I didn't mention above..