D
D is a systems language that keeps C++'s performance but with simpler syntax, optional garbage collection, powerful metaprogramming and improved memory safety. Pragmatic and productive.
- Creado por Walter Bright
- Año 2001
- Paradigma: Multi-paradigm · compiled
- Extensiones: .d, .di
Para qué se usa
- High-performance systems
- Tooling
- Backend
A favor
- Fast like C++
- Cleaner syntax
- Powerful metaprogramming
En contra
- Small community
- Limited ecosystem
- Low adoption
Ecosistema
- DUB
- Phobos
- vibe.d
- GtkD
Ejemplo
import std.stdio;
void main() {
writeln("¡Hola, mundo!");
}