mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
3d40d8e655
~+200 bytes
9 lines
144 B
Plaintext
Executable File
9 lines
144 B
Plaintext
Executable File
f() { false; return; echo BAD; };
|
|
{ f; echo One:$?; }; echo Zero:$?
|
|
|
|
f() { false; return; };
|
|
f; echo One:$?
|
|
|
|
f() { return 5; };
|
|
f; echo Five:$?
|