mirror of
https://git.busybox.net/busybox
synced 2025-08-28 21:14:54 +02:00
function old new delta parse_stream 3063 3075 +12 done_word 777 784 +7 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/0 up/down: 19/0) Total: 19 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
8 lines
71 B
Text
Executable file
8 lines
71 B
Text
Executable file
{ f() { echo $1; } }
|
|
f 1
|
|
|
|
{ f() ( echo $1; )}
|
|
f 2
|
|
|
|
{ f()(echo $1)}
|
|
f 3
|