mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
12bcc76e9b
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10 lines
133 B
Plaintext
Executable File
10 lines
133 B
Plaintext
Executable File
f() { echo $1; }
|
|
f 1
|
|
|
|
# hush fails on this syntax, but i've never seen anyone use it ...
|
|
#f() ( echo $1; )
|
|
f 2
|
|
|
|
#f() ( echo $1 )
|
|
f 3
|