Programming Language

Prolog

Prolog (programminglanguage)
Full NameProlog
Short NameProlog
DescriptionTBD
CompanyUnkown
WebNo
MobileNo
EnterpriseNo
EmbeddedNo
Snippet from Wikipedia: Prolog

Prolog is a logic programming language that has its origins in artificial intelligence, automated theorem proving and computational linguistics.

Prolog has its roots in first-order logic, a formal logic, and unlike many other programming languages, Prolog is intended primarily as a declarative programming language: the program is a set of facts and rules, which define relations. A computation is initiated by running a query over the program.

Prolog was one of the first logic programming languages and remains the most popular such language today, with several free and commercial implementations available. The language has been used for theorem proving, expert systems, term rewriting, type systems, and automated planning, as well as its original intended field of use, natural language processing.

Prolog is a Turing-complete, general-purpose programming language, which is well-suited for intelligent knowledge-processing applications.

:- initialization(main).

main :-
    write('Hello, World!'), nl.

See also: Programming Languages

  • dev/prolog.txt
  • Last modified: 2024/08/01 16:27
  • by Henrik Yllemo