Current section
Files
Jump to
Current section
Files
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
}