+ 3
What programming languages are declarative???
Language declarative
4 Antworten
+ 1
Oma Falk Haskell what kind of language is it?
+ 3
Declarative style means describing the logic of the computation, without specifying the control flow, as opposed to imperative programming.
Functional languages, such as Haskell, can also be fully or partially declarative. You can also write declarative code in Javascript, eg. with React.
Other examples are SQL and regular expressions.
https://en.m.wikipedia.org/wiki/Declarative_programming
+ 1
prolog and lisp are declarative.
0
as I remember Haskell is functional.