LangWatch
Gleam
Tags:
concurrent
,
functional
,
product types
,
sum types
Related tools:
Example 1
import
gleam/io
import
gleam/list
import
gleam/string
import
gleam/yielder
import
stdin
pub
fn
main
() {
// Print stdin, uppercased, to stdout
stdin
.read_lines
()
|>
yielder
.
to_list
|>
list
.map
(
string
.
uppercase
)
|>
list
.each
(
io
.println
) }
Gleam Summary
Language
Gleam
Home Page