android_mt6572_jiabo/external/busybox/shell/hush_test/hush-misc/func5.tests
2025-09-05 16:56:03 +08:00

9 lines
133 B
Text
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