The Dawn of the Computer Age

Ada Programming Language

Ada

The Ada Programming Language was created for embedded machines. It was part of a very long and extensive language design effort. It was finished in February 1980 and the specs were then frozen. Ada is in use by many prominent organizations, such as the depart of defense. It is also used with Computer Aided Design and banking systems.

An example that shows "Hello World" (sans quotes) being printed is below:

with Text_To; use Text_To procedure hello is begin put("Hello World"); end hello