Lost Password?


Go Back   CodeCall Programming Forum > Software Development > General Programming

General Programming Non language specific, Assembly, Linux/Unix, Mac and anything not covered in other topics. Talk about Programming Theory here.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-15-2007, 10:50 AM
cygnusX cygnusX is offline
Newbie
 
Join Date: Oct 2007
Posts: 3
Rep Power: 0
cygnusX is on a distinguished road
Default Develop a new programming language

Can you give me some links to articles describing the developing process of a programming language?Yeah,i'm talking about development of programming language.I searched Google but didn't find almost anything about this topic.After design phase(syntax,keywords,flow control...) obviosly i have to write compiler for the language.I've searched in the net and found some examples of writing compiler,it was written in C.Does it matter in which language will be written?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 10-15-2007, 11:53 AM
twalters84 twalters84 is offline
Learning Programmer
 
Join Date: Oct 2007
Posts: 56
Rep Power: 5
twalters84 is on a distinguished road
Default

Hey there,

I do not really have an easy answer for you, but I know it will involve a lot of hard work and dedication.

In my opinion, Java is the leading programming language for the web with C++ close behind.

How would you improve upon these languages?

Sincerely,
Travis Walters
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-15-2007, 12:59 PM
WingedPanther's Avatar   
WingedPanther WingedPanther is offline
Super Moderator
 
Join Date: Jul 2006
Age: 35
Posts: 3,278
Last Blog:
wxWidgets is NOT code ...
Rep Power: 36
WingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to allWingedPanther is a name known to all
Default

Bjarne Stroustrup has a book out on how he designed C++. It would probably be a good read.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Programming is a branch of mathematics.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 10-25-2007, 06:48 PM
mahogny mahogny is offline
Newbie
 
Join Date: Oct 2007
Posts: 10
Rep Power: 0
mahogny is on a distinguished road
Send a message via ICQ to mahogny
Default

language theory can be divided roughly into:
1. practical use and software engineering
2. theoretical foundations

for 1, have a look at java, C#, python and ruby at the minimum. add some functional programming if you want cutting edge features.

as for 2, you need to read. sorry. there is a lot of thought in more recent languages that is not apparent to users. this will not show up until you write compilers and need to reason about the code, but never the less, it is of outmost importance if you want speed and guarantees of properties. many of these things are sorted under "language semantics" and "type theory". beware that these subjects are Very theoretical and figuring out what conclusions actually matter will take a while.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 11-01-2007, 11:54 PM
Kaabi's Avatar   
Kaabi Kaabi is offline
Programming God
 
Join Date: Jul 2006
Posts: 884
Rep Power: 14
Kaabi is on a distinguished road
Default

Quote:
Originally Posted by WingedPanther View Post
Bjarne Stroustrup has a book out on how he designed C++. It would probably be a good read.
That would be a very interesting book to read. My friend once tried to create a programming language. Almost did it, too, but there wasn't really a point to it and it was a lot of work so... it was scrapped.
__________________
Cheap Airsoft Guns

If you are looking for high-quality, yet cheap, airsoft guns, then check out MrAirsoft.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #6 (permalink)  
Old 11-02-2007, 07:38 AM
mahogny mahogny is offline
Newbie
 
Join Date: Oct 2007
Posts: 10
Rep Power: 0
mahogny is on a distinguished road
Send a message via ICQ to mahogny
Default

probably a book that would do more bad than good. the technology it describes is over 30 years old, and from an OO perspective the language was out of date already when it was made. it's a compromise to keep C compatibility. if you want to make a new language, at least get some modern literature.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 11-12-2007, 06:39 AM
TcM's Avatar   
TcM TcM is offline
Code Warrior
 
Join Date: Aug 2006
Location: In a technologic world :p
Posts: 8,332
Rep Power: 68
TcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of light
Default

Lol.. I would not care to make a new programming language, there are too many out there!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 11-12-2007, 12:43 PM
mahogny mahogny is offline
Newbie
 
Join Date: Oct 2007
Posts: 10
Rep Power: 0
mahogny is on a distinguished road
Send a message via ICQ to mahogny
Default

Quote:
Originally Posted by TheComputerMaster View Post
Lol.. I would not care to make a new programming language, there are too many out there!
it'd clearly be for learning purposes unless you know what you are doing. most languages, including the main stream ones, are crap though. a requirement to get a language in is to at least make it possible to link it with existing languages. targeting the JVM is a good idea.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 11-12-2007, 05:44 PM
TkTech TkTech is offline
 
Join Date: Jun 2006
Posts: 992
Last Blog:
Having trouble with yo...
Rep Power: 20
TkTech is on a distinguished road
Send a message via MSN to TkTech
Default

Compiler? haha, your already thinking 10 steps ahead. You can't even start a compiler till you have a parser.

Lookup the source code for TinyCC, which is an insanely great, incredibly minimal C compiler. Before you even try your own language make one for another language thats proven its worth. (c or asm would be easiest here, c++ and c# have alot of runtime components)
Also, interpreted language example:
davidtattersall.me.uk | write your own programming language
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
new C-like programming language kenna Software Development Tools 14 09-03-2008 03:34 PM
What is the best language for starting programming? Onur General Programming 6 10-11-2007 08:47 PM
best programming language Svraddict General Programming 8 09-29-2007 12:38 PM
D Programming Language. R-G General Programming 2 04-12-2007 12:22 PM
How do you learn a programming language? Dan Software Development Tools 14 08-09-2006 08:12 PM


All times are GMT -5. The time now is 06:21 PM.

Contest Stats

WingedPanther ........ 2753.6
Xav ........ 2704
Brandon W ........ 1702.32
John ........ 1207.73
marwex89 ........ 1175.24
morefood2001 ........ 966.05
dcs ........ 655.75
Steve.L ........ 475.59
orjan ........ 418.58
Aereshaa ........ 383.54

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 98%

Ads