OILS
/
stdlib
/ funcs.ysh
View on Github
|
oilshell.org
5 lines, 3 significant
1
func identity(x) {
2
## The identity function. Returns its argument.
3
4
return (x)
5
}