Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Applications development with D language

Tags:

For those who had developed applications with D,

  • which libraries did you use to build your application?
  • those libraries were good documented?
  • did you use Tango?
  • do you feel that D is ready to build big applications?
  • which IDE did you use? Descent maybe?
like image 897
Jonathan Barbero Avatar asked Nov 14 '08 02:11

Jonathan Barbero


People also ask

What programming language is D?

The D programming language is an object-oriented, imperative, multi-paradigm system programming language. D language originated as a re-engineering of C++, and D's design goals try combining the performance of compiled languages with the safety and expressive power of modern dynamic languages.

Which language is mostly used in application development?

If you plan on creating an Android app, Java could be the way to go. According to a recent survey, JavaScript is the most popular language among developers, with around 69.7 percent using it. HTML/CSS is the second most popular language, with 62.4 percent of respondents saying they code with it.

Is D a good programming language?

Readable and maintainable. D code is easy to understand by anyone familiar with C-like programming languages. Moreover, D is very readable, even for sophisticated code, which makes bugs easy to spot. Readability is also critical for engaging contributors, which is key to the growth of open source software.

Is C language used for app development?

These applications are called native because they are written in the native programming language for a specific platform. For Android OS, this android coding language is Java, while ios native language is Objective-C or Swift Mobile web apps.


1 Answers

Note that any C library can be used with D, as D fully supports the C ABI. D has some limited support for C++ libraries, though not C++ template libraries.

like image 169
Walter Bright Avatar answered Sep 26 '22 04:09

Walter Bright