Search Results

11
votes

D Programming Language in the real world?

I know of one smallish company that have sent a mail server product to the market. They had at least 2 people working full time on the project. Also, a major player in the IT business have several …
4
votes

D-Editor with debugging

Descent, the Eclipse plugin, should support both (if you have a D supporting debugger installed). I have to admit I haven't trie …
1
vote

How can I break on exception using ddbg

You can get stack traces on exceptions by modding the runtime, by the way. The best resource is probably …
0
votes

How can I grab single key hit in D Programming Language + Tango?

kbhit is indeed not part of any standard C interfaces, but can be found in conio.h. However, you should be able to use getc/getchar from tango.stdc.stdio - I changed the FAQ you mention to …
1
vote

Impressions of D?

I didn't find this question earlier as it wasn't tagged, here is my take: The syntax is not about it looking better (although it mostly does), but about convenience. Common programming task …
1
vote

D (and Tango) on PowerPC Linux

This used to work, but it has been a combination with few users, and so I'm not sure if it has been tested recently. There shouldn't be major problems with Tango though - compiler is probably likel …
5
votes

C++ versus D

It really depends on what your needs are - large scale commercial applications written in D does exist on the server side, and for that D (typically using Tango/Mango) is a perfect …
10
votes

Does the D programming language have a future?

I certainly think it has a future, otherwise I wouldn't have spent as much time on it as I have, including being part of the project lead of Tango (close to 100 contributors) for more than 2 years …
2
votes

Is anyone using D in commercial applications?

I have had one contract where I worked on a commercial product that is implemented in D (http://www.tionex.de/en/dater/dater.html …
0
votes

printing floating point numbers in D

I see you are currently using Phobos, however what you are trying to do is supported in Tango. Stdout.formatln("{:f2}", 1.2); will print "1.20" …
2
votes

GUI Libraries for D

I think DWT looks like the most mature currently usable solution, especially if you need cross platform. As for a gui being included in the standard library, it is stated previously that it won't h …
1
vote

const vs enum in D

Your actual question; why enum/const is the same in D as in C++; seems to be unanswered. Sadly there exists no good reason for this choice whatsoever. I believe that this was just an unintentional …
1
vote

Is there a way to ensure that member functions are virtual in D?

I believe FeepingCreature is correct, but in addition I think you can assume that such optimizations only will be considered by the compiler if it directly creates an executable from the sources. …
3
votes

How would you approach using D in a embedded real-time environment?

Real time is more about guarantees than "real time" performance. As such there are two possibilities; If you don't need GC dependent libraries, just avoid making your application/libr …
5
votes

Getting Embedded with D (the programming language)

I have to say that the short answer to this question is "No". If your machines are 16 bit, you'll have big problems fitting D into it - it is explicitly not designed for it. …