← Back to All Languages
Functional

HASKELL

Est. 1990
CreatorHaskell Committee
ParadigmFunctional • Declarative

A purely functional programming language with strong static typing and lazy evaluation. Haskell is known for its mathematical foundation and expressive type system.

Hello World
1main :: IO ()
2main = putStrLn "Hello, World!"