Main article: Agent-oriented programming
Agent-oriented programming allows the developer to build, extend and use software agents, which are abstractions of objects that can message other agents.
Main category: Array programming languages
Array programming (also termed vector or multidimensional) languages generalize operations on scalars to apply transparently to vectors, matrices, and higher-dimensional arrays.
Main article: Aspect-oriented programming
Aspect-oriented programming enables developers to add new functionality to code, known as "advice", without modifying that code itself; rather, it uses a pointcut to implement the advice into code blocks.
Main article: Assembly language
Assembly languages directly correspond to a machine language (see below), so machine code instructions appear in a form understandable by humans, although there may not be a one-to-one mapping between an individual statement and an individual instruction. Assembly languages let programmers use symbolic addresses, which the assembler converts to absolute or relocatable addresses. Most assemblers also support macros and symbolic constants.
Main article: Authoring language
An authoring language is a programming language designed for use by a non-computer expert to easily create tutorials, websites, and other interactive computer programs.
Main article: Command-line interface
Command-line interface (CLI) languages are also called batch languages or job control languages. Examples:
Main article: Compiled language
These are languages typically processed by compilers, though theoretically any language can be compiled or interpreted.
Main article: Concatenative programming language
A concatenative programming language is a point-free computer programming language in which all expressions denote functions, and the juxtaposition of expressions denotes function composition.
Main category: Concurrent programming languages
For a more comprehensive list, see List of concurrent and parallel programming languages.
Message passing languages provide language constructs for concurrency. The predominant paradigm for concurrency in mainstream languages such as Java is shared memory concurrency. Concurrent languages that make use of message passing have generally been inspired by process calculi such as communicating sequential processes (CSP) or the π-calculus.
Main article: Constraint programming
A constraint programming language is a declarative programming language where relationships between variables are expressed as constraints. Execution proceeds by attempting to find values for the variables which satisfy all declared constraints.
A curly bracket or curly brace language has syntax that defines a block as the statements between curly brackets, a.k.a. braces, {}. This syntax originated with BCPL (1966), and was popularized by C. Many curly bracket languages descend from or are strongly influenced by C. Examples:
Dataflow programming languages rely on a (usually visual) representation of the flow of data to specify the program. Frequently used for reacting to discrete events or for processing streams of data. Examples of dataflow languages include:
Data-oriented languages provide powerful ways of searching and manipulating the relations that have been described as entity relationship tables which map one set of things into other sets. Examples of data-oriented languages include:
Decision tables can be used as an aid to clarifying the logic before writing a program in any language, but in the 1960s a number of languages were developed where the main logic is expressed directly in the form of a decision table, including:
Main category: Declarative programming languages
Declarative languages express the logic of a computation without describing its control flow in detail. Declarative programming stands in contrast to imperative programming via imperative programming languages, where control flow is specified by serial orders (imperatives). (Pure) functional and logic-based programming languages are also declarative, and constitute the major subcategories of the declarative category. This section lists additional examples not in those subcategories.
Source embeddable languages embed small pieces of executable code inside a piece of free-form text, often a web page.
Client-side embedded languages are limited by the abilities of the browser or intended client. They aim to provide dynamism to web pages without the need to recontact the server.
Server-side embedded languages are much more flexible, since almost any language can be built into a server. The aim of having fragments of server-side code embedded in a web page is to generate additional markup dynamically; the code itself disappears when the page is served, to be replaced by its output.
The above examples are particularly dedicated to this purpose. A large number of other languages, such as Erlang, Scala, Perl, Ring and Ruby can be adapted (for instance, by being made into Apache modules).
A wide variety of dynamic or scripting languages can be embedded in compiled executable code. Basically, object code for the language's interpreter needs to be linked into the executable. Source code fragments for the embedded language can then be passed to an evaluation function as strings. Application control languages can be implemented this way, if the source code is input by the user. Languages with small interpreters are preferred.
For a more comprehensive list, see List of educational programming languages.
Languages developed primarily for the purpose of teaching and learning of programming.
Main category: Esoteric programming languages
An esoteric programming language is a programming language designed as a test of the boundaries of computer programming language design, as a proof of concept, or as a joke.
Extension programming languages are languages embedded into another program and used to harness its features in extension scripts.
Main category: Fourth-generation programming languages
Fourth-generation programming languages are high-level programming languages built around database systems. They are generally used in commercial environments.
Main category: Functional languages
Functional programming languages define programs and subroutines as mathematical functions and treat them as first-class. Many so-called functional languages are "impure", containing imperative features. Many functional languages are tied to mathematical calculation tools. Functional languages include:
For a more comprehensive list, see List of hardware description languages.
In electronics, a hardware description language (HDL) is a specialized computer language used to describe the structure, design, and operation of electronic circuits, and most commonly, digital logic circuits. The two most widely used and well-supported HDL varieties used in industry are Verilog and VHDL. Hardware description languages include:
Imperative programming languages may be multi-paradigm and appear in other classifications. Here is a list of programming languages that follow the imperative paradigm:
Known as REPL - Interactive mode languages act as a kind of shell: expressions or statements can be entered one at a time, and the result of their evaluation seen immediately.
Interpreted languages are programming languages in which programs may be executed from source code form, by an interpreter. Theoretically, any language can be compiled or interpreted, so the term interpreted language generally refers to languages that are usually interpreted rather than compiled.
Iterative languages are built around or offering generators.
Garbage Collection (GC) is a form of automatic memory management. The garbage collector attempts to reclaim memory that was allocated by the program but is no longer used.
Main article: Garbage collection (computer science)
Some programming languages without the inherent ability to manually manage memory, like Cython,24 Swift,25 and Scala26 (Scala Native only), are able to import or call functions like malloc and free from C through a foreign function interface.
List-based languages are a type of data-structured language that are based on the list data structure.
Little languages29 serve a specialized problem domain.
Main category: Logic programming languages
Logic-based languages specify a set of attributes that a solution must-have, rather than a set of steps to obtain a solution.
Notable languages following this programming paradigm include:
Machine languages are directly executable by a computer's CPU. They are typically formulated as bit patterns, usually represented in octal or hexadecimal. Each bit pattern causes the circuits in the CPU to execute one of the fundamental operations of the hardware. The activation of specific electrical inputs (e.g., CPU package pins for microprocessors), and logical settings for CPU state values, control the processor's computation. Individual machine languages are specific to a family of processors; machine-language code for one family of processors cannot run directly on processors in another family unless the processors in question have additional hardware to support it (for example, DEC VAX processors included a PDP-11 compatibility mode). They are (essentially) always defined by the CPU developer, not by 3rd parties.31 The symbolic version, the processor's assembly language, is also defined by the developer, in most cases. Some commonly used machine code instruction sets are:
Main category: Macro programming languages
Macro languages transform one source code file into another. A "macro" is essentially a short piece of text that expands into a longer one (not to be confused with hygienic macros), possibly with parameter substitution. They are often used to preprocess source code. Preprocessors can also supply facilities like file inclusion.
Macro languages may be restricted to acting on specially labeled code regions (pre-fixed with a # in the case of the C preprocessor). Alternatively, they may not, but in this case it is still often undesirable to (for instance) expand a macro embedded in a string literal, so they still need a rudimentary awareness of syntax. That being the case, they are often still applicable to more than one language. Contrast with source-embeddable languages like PHP, which are fully featured.
Scripting languages such as Tcl and ECMAScript (ActionScript, ECMAScript for XML, JavaScript, JScript) have been embedded into applications. These are sometimes called "macro languages", although in a somewhat different sense to textual-substitution macros like m4.
Metaprogramming is the writing of programs that write or manipulate other programs, including themselves, as their data or that do part of the work that is otherwise done at run time during compile time. In many cases, this allows programmers to get more done in the same amount of time as they would take to write all the code manually.
Main article: Comparison of multi-paradigm programming languages
Multiparadigm languages support more than one programming paradigm. They allow a program to use more than one programming style. The goal is to allow programmers to use the best tool for a job, admitting that no one paradigm solves all problems in the easiest or most efficient way.
See also: List of numerical-analysis software and List of numerical libraries
Several general-purpose programming languages, such as C and Python, are also used for technical computing, this list focuses on languages almost exclusively used for technical computing.
Main article: Non-English-based programming languages
Class-based object-oriented programming languages support objects defined by their class. Class definitions include member data. Message passing is a key concept, if not the main concept, in object-oriented languages.
Polymorphic functions parameterized by the class of some of their arguments are typically called methods. In languages with single dispatch, classes typically also include method definitions. In languages with multiple dispatch, methods are defined by generic functions. There are exceptions where single dispatch methods are generic functions (e.g. Bigloo's object system).
Prototype-based languages are object-oriented languages where the distinction between classes and instances has been removed:
Main article: Off-side rule § Off-side rule languages
Off-side rule languages denote blocks of code by their indentation.
Procedural programming languages are based on the concept of the unit and scope (the data viewing range) of an executable code statement. A procedural program is composed of one or more units or modules, either user coded or provided in a code library; each module is composed of one or more procedures, also called a function, routine, subroutine, or method, depending on the language. Examples of procedural languages include:
Main article: Query language
Reflective programming languages let programs examine and possibly modify their high-level structure at runtime or compile-time. This is most common in high-level virtual machine programming languages like Smalltalk, and less common in lower-level programming languages like C. Languages and platforms supporting reflection:
See also: Aspect-oriented programming
Rule-based languages instantiate rules when activated by conditions in a set of data. Of all possible activations, some set is selected and the statements belonging to those rules execute. Rule-based languages include:
Main article: Scripting language
Main category: Stack-oriented programming languages
Stack-based languages are a type of data-structured language that are based on the stack data structure.
Main category: Synchronous programming languages
Synchronous programming languages are optimized for programming reactive systems, systems that are often interrupted and must respond quickly. Many such systems are also called realtime systems, and are used often in embedded systems.
Examples:
See also: Category:Shading languages
A shading language is a graphics programming language adapted to programming shader effects. Such language forms usually consist of special data types, like "color" and "normal". Due to the variety of target markets for 3D computer graphics.
They provide both higher hardware abstraction and a more flexible programming model than previous paradigms which hardcoded transformation and shading equations. This gives the programmer greater control over the rendering process and delivers richer content at lower overhead.
Shading languages used in offline rendering produce maximum image quality. Processing such shaders is time-consuming. The computational power required can be expensive because of their ability to produce photorealistic results.
These languages assist with generating lexical analyzers and parsers for context-free grammars.
The system programming languages are for low-level tasks like memory management or task management. A system programming language usually refers to a programming language used for system programming; such languages are designed for writing system software, which usually requires different development approaches when compared with application software.
System software is computer software designed to operate and control the computer hardware, and to provide a platform for running application software. System software includes software categories such as operating systems, utility software, device drivers, compilers, and linkers. Examples of system languages include:
Main article: Transformation language
Transformation languages serve the purpose of transforming (translating) source code specified in a certain formal language into a defined destination format code. It is most commonly used in intermediate components of more complex super-systems in order to adopt internal results for input into a succeeding processing routine.
Main category: Visual programming languages
Visual programming languages let users specify programs in a two-(or more)-dimensional way, instead of as one-dimensional text strings, via graphic layouts of various types. Some dataflow programming languages are also visual languages.
Computer scientist Niklaus Wirth designed and implemented several influential languages.
These are languages based on or that operate on XML.
"Operators". Retrieved 2024-05-13. https://docs.raku.org/language/operators#Operators ↩
"wrap". https://docs.raku.org/routine/wrap ↩
""Aspects in Raku"". https://conf.raku.org/talk/142 ↩
Documentation » The Python Standard Library » Concurrent Execution https://docs.python.org/3/library/concurrency.html ↩
"Channels and other mechanisms". https://docs.perl6.org/language/concurrency ↩
"ProblemSolver". https://raku.land/github:FCO/ProblemSolver ↩
"Indentation based syntax · rsdn/nemerle Wiki". GitHub. Retrieved 2022-03-18. https://github.com/rsdn/nemerle/wiki/Indentation-based-syntax ↩
"Solidity: Solidity 0.8.11 documentation". https://docs.soliditylang.org/en/v0.8.11/ ↩
"Iterator". https://docs.raku.org/type/Iterator ↩
Some Ada implementations include a garbage collector,[10] though the language specification does not require its inclusion.[citation needed] ↩
"Memory Management · BlitzMax". Retrieved 2023-07-14. https://blitzmax.org/docs/en/language/memory_management/ ↩
"Pointers · BlitzMax". Retrieved 2023-07-14. https://blitzmax.org/docs/en/language/pointers/ ↩
"BRL.Blitz · BlitzMax". Retrieved 2023-07-14. https://blitzmax.org/docs/en/api/brl/brl.blitz/ ↩
"Using Pointers in an ILE COBOL Program - IBM Documentation". IBM. June 2012. Retrieved 2023-07-14. https://www.ibm.com/docs/en/i/7.3?topic=considerations-using-pointers-in-ile-cobol-program ↩
"HEAP - IBM Documentation". IBM. Retrieved 2023-07-14. https://www.ibm.com/docs/en/zos/2.3.0?topic=options-heap ↩
"SOM-based OO COBOL language elements that are changed - IBM Documentation". IBM. Retrieved 2023-07-14. https://www.ibm.com/docs/en/cobol-zos/6.1?topic=usbooocp-som-based-oo-cobol-language-elements-that-are-changed ↩
"Garbage Collection". D Programming Language. Retrieved 2022-03-18. https://dlang.org/spec/garbage.html ↩
"Nim's Memory Management". Retrieved 2022-03-18. https://nim-lang.github.io/Nim/mm.html ↩
"About Memory Management". Apple Developer. Retrieved 2025-03-12. https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/MemoryMgmt.html ↩
Developers initially had to manually reclaim memory using the save and restore operators. PostScript Level 2 introduced a garbage collector, but its usage is optional.[20] ↩
"alloc::rc - Rust". Retrieved 2025-03-12. https://doc.rust-lang.org/alloc/rc/ ↩
"V Documentation". Retrieved 2025-03-12. https://docs.vlang.io/memory-management.html ↩
"Projects/Vala/ReferenceHandling - GNOME Wiki!". Archived from the original on 2024-01-21. Retrieved 2022-03-21. https://web.archive.org/web/20240121085048/https://wiki.gnome.org/Projects/Vala/ReferenceHandling#Manual_memory_management_with_pointer_syntax ↩
"Memory Allocation — Cython 3.0.0.dev0 documentation". Retrieved 2023-07-14. https://cython.readthedocs.io/en/latest/src/tutorial/memory_allocation.html ↩
On Apple platforms, these functions are imported from the C standard library (which is imported from Foundation, AppKit or UIKit); on Linux, the developer needs to import Glibc, and ucrt on Windows.[citation needed] /wiki/Wikipedia:Citation_needed ↩
"Native code interoperability – Scala Native 0.4.14 documentation". Retrieved 2023-07-05. https://scala-native.org/en/stable/user/interop.html ↩
"Understanding Ownership - The Rust Programming Language". doc.rust-lang.org. https://doc.rust-lang.org/nightly/book/ch04-00-understanding-ownership.html ↩
"Smart Pointers - The Rust Programming Language". doc.rust-lang.org. https://doc.rust-lang.org/nightly/book/second-edition/ch15-00-smart-pointers.html ↩
Jon Bentley (AT&T) August 1986 CACM 29 (8) "Little Languages", pp 711-721 from his Programming Pearls column http://www.cs.toronto.edu/~chechik/courses18/csc2125/paper13.pdf ↩
The objects of SQL are collections of database records, called tables. A full programming language can specify algorithms, irrespective of runtime. Thus an algorithm can be considered to generate usable results. In contrast, SQL can only select records that are limited to the current collection, the data at hand in the system, rather than produce a statement of the correctness of the result. /wiki/Database_record ↩
A notable exception would be the Soviet/Russian 1801 series CPU, which originally used their own domestic ISA, but were later redesigned to be PDP-11 compatible as a policy decision. /wiki/1801_series_CPU ↩
Submodels are not listed, only base models. ↩
"Meta-programming: What, why and how". 2011-12-14. https://perl6advent.wordpress.com/2011/12/14/meta-programming-what-why-and-how/ ↩
"Procedural Macros for Generating Code from Attributes". doc.rust-lang.org. https://doc.rust-lang.org/nightly/book/ch19-06-macros.html#procedural-macros-for-generating-code-from-attributes ↩
The concept of object with the traditional single-dispatch OO semantics is not present in Julia, instead with the more general multiple dispatch on different types at runtime. ↩
"Classes and Roles". https://docs.perl6.org/language/classtut ↩
"Meta-object protocol (MOP)". https://docs.perl6.org/language/mop ↩
Scabia, Marco. "What is AGAL". Adobe Developer Connection. Adobe. Retrieved 8 May 2018. https://www.adobe.com/devnet/flashplayer/articles/what-is-agal.html ↩
"Grammars". https://docs.raku.org/language/grammars ↩
Wulf, W.A.; Russell, D.B.; Haberman, A.N. (December 1971). "BLISS: A Language for Systems Programming". Communications of the ACM. 14 (12): 780–790. CiteSeerX 10.1.1.691.9765. doi:10.1145/362919.362936. S2CID 9564255. /wiki/CiteSeerX_(identifier) ↩
"C++ Applications". http://www.stroustrup.com/applications.html ↩
"Organizations using the D Language". D Programming Language. https://dlang.org/orgs-using-d.html ↩
"Mozilla Research". 1 January 2014. https://www.mozilla.org/en-US/research/ ↩
Swift uses automatic reference counting. /wiki/Automatic_Reference_Counting ↩