Component Pascal
Component Pascal is an efficient and expressive programming language known for its strong static typing and modular structure. It is primarily used for developing software components, embedded systems, and applications where reliability and maintainability are important.
Hello, world code example:
MODULE Hello;
IMPORT Out;
PROCEDURE Do*;
BEGIN
Out.String("Hello world!"); Out.Ln
END Do;
END Hello.
Popularity: Less than 1% of developers are using or have used this language.*
*According to StackOverflow's 2023 survey.
Repositories on GitHub: 16,883