D
Updated: 08/02/2020 by Computer Hope
D is a computer programming language that is a higher level language than C++ that started development in December 1999. D has many similarities to C and C++ and is well suited for creating medium to large scale million line programs.
Hello world written in D
import std.stdio; int main() { writefln("Hello world"); return 0; }