A Complete List of Computer Programming Languages
Computer programming languages are used to to communicate instructions to a computer. They are based on certain syntactic and semantic rules, which define the meaning of each of the programming language constructs. Today I’ve got a list of every programming language I could find. I divided them into the following categories: Interpreted Programming Languages Functional Programming Languages Compiled Programming Languages Procedural Programming Languages Scripting Programming Languages Markup Programming Languages Logic-Based Programming Languages Concurrent Programming Languages Object-Oriented Programming Languages Interpreted Programming Languages An interpreted language is a programming language for which most of its implementations execute instructions directly, without previously compiling a program into machine-language instructions. The interpreter executes the program directly, translating each statement into a se...