Awesome
Cloe
<div align="center"> <img src="https://raw.githubusercontent.com/cloe-lang/icon/master/spaced.png" alt="logo"/> </div>Cloe is the timeless functional programming language. It aims to be simple and practical.
Features
- Functional programming
- Immutable data
- Lazy evaluation
- Implicit parallelism, concurrency, and reactivity
Installation
go get -u github.com/cloe-lang/cloe/...
Go 1.8+ is required.
Documentation
Here.
Examples
Hello, world!
(print "Hello, world!")
HTTP server
(import "http")
(def (handler request)
((@ request "respond") "Hello, world!"))
(let requests (http.getRequests ":8080"))
..(map handler requests)
See examples directory for more.