Curry is a programming language created in 1990 by Michael Hanus and Sergio Antoy.
#811on PLDB | 34Years Old | 4Repos |
Curry is an experimental functional logic programming language, based on the Haskell language. It merges elements of functional and logic programming, including constraint programming integration. It is nearly a superset of Haskell, lacking support mostly for overloading using type classes, which some implementations provide anyway as a language extension, such as the Münster Curry Compiler.. Read more on Wikipedia...
main :: IO ()
main = putStrLn "Hello, world!"
-- "Hello World" demo for the Tcl/Tk library
import Tk
main = runWidget "Hello"
(TkCol [] [TkLabel [TkText "Hello World"],
TkButton tkExit [TkText "Stop"]])
insert x ys = x : ys
insert x (y:ys) = y : insert x ys
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | "Hello world" | " |
Semantic Indentation | ✓ |