diff --git a/README.md b/README.md index 96bf8ea..adfe217 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ This project features a variety of implementations in many programming languages - [Falcon](/Falcon.fal) - [Fortran](/Fortran.f90) - [GDScript](/GDScript.gd) +- [Gleam](/gleam.gleam) - [Go](/go.go) - [Groovy](/Groovy.groovy) - [Hack](/Hack.hack) diff --git a/gleam.gleam b/gleam.gleam new file mode 100644 index 0000000..7243780 --- /dev/null +++ b/gleam.gleam @@ -0,0 +1,7 @@ +import input +import gleam/io + +pub fn main() -> Nil { + let assert Ok(name) = input.input("What can I help you with? ") + io.println("I'm sorry, I can't assist with {name}.") +}