+ 9
How to make my own programming languages.
From which sources should I learn or need to make it.
9 Réponses
+ 2
That can be done in many ways a easy way to do it is using python but first you'll need to make shells.
+ 10
thanks #Sanchit Stone
+ 10
Java and Python
+ 10
I am best at Python
+ 2
you are welcome my friend
+ 1
How many programming languages do you know and how good are you at them?
+ 1
Actually, making a programming language isn't the hard part. That's just the part when you define all your syntax.
The actual, difficult part is building a compiler or interpreter for your language. If you're going to do that, I suggest learning both C and assembly code. C is relatively easy, but assembly is not. You'll also need to learn about compiler design - there's a lot more to it than you'd expect.
+ 1
Here is Git repository for GO language (developted by google, as I know) it has 748 contributors. Instead of dreaming of making your own langauge, try to master one and be profficient in it. Then try to master (or at least get around) at least 2 more...
https://github.com/golang/go
- 4
Google