techiefreak05 Posted September 12, 2006 Share Posted September 12, 2006 can anyone point me in the right direction to create a programming language.. i just wanna try it. Quote Link to comment https://forums.phpfreaks.com/topic/20473-sry-how-to-create-a-programming-language/ Share on other sites More sharing options...
ober Posted September 12, 2006 Share Posted September 12, 2006 The first place you need to start is with a compiler. I'm not sure why you want to do this, but that's where you need to start. Quote Link to comment https://forums.phpfreaks.com/topic/20473-sry-how-to-create-a-programming-language/#findComment-90364 Share on other sites More sharing options...
extrovertive Posted September 24, 2006 Share Posted September 24, 2006 Ya, make sure to read on types of programming langauges (procedural, functional, object-oriented, etc), BNF or Extended Backus-Naur Form (EBNF) notation, grammar tree, ambigious grammar/operator precedence, parsing, syntax, semantic, lexical analysis, code optimization, linking/loading, etc, if you planned to compiled language. :PPHP was written in C I believe and its syntax are borrowed from languages like Java, C, and C++. Quote Link to comment https://forums.phpfreaks.com/topic/20473-sry-how-to-create-a-programming-language/#findComment-97583 Share on other sites More sharing options...
kenrbnsn Posted September 27, 2006 Share Posted September 27, 2006 Get & read [url=http://www-cs-faculty.stanford.edu/~uno/taocp.html]"The Art of Computer Programming, volume 1"[/url] by Donald Knuth.These books, although first written in the late 1960's/early 1970's are still considered to be one of the cornerstones of Computer Science.Ken Quote Link to comment https://forums.phpfreaks.com/topic/20473-sry-how-to-create-a-programming-language/#findComment-99710 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.