fbf44854a3
Many other shells support this construct function old new delta parse_stream 2950 3018 +68 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
9 lines
64 B
Plaintext
Executable File
9 lines
64 B
Plaintext
Executable File
f() { echo $1; }
|
|
f 1
|
|
|
|
f() ( echo $1; )
|
|
f 2
|
|
|
|
f() ( echo $1 )
|
|
f 3
|