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. 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. 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++. 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 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
Archived
This topic is now archived and is closed to further replies.