Packages

CLI tool to package a Gleam app as a FreeBSD package, with a service script.

Current section

Files

Jump to
glm_freebsd priv example build packages gleam_stdlib src gleam function.gleam
Raw

priv/example/build/packages/gleam_stdlib/src/gleam/function.gleam

/// Takes a single argument and always returns its input value.
///
pub fn identity(x: a) -> a {
x
}