mirror of
https://github.com/sheumann/hush.git
synced 2025-01-04 22:34:37 +00:00
11 lines
297 B
Plaintext
11 lines
297 B
Plaintext
|
echo "Semicolons after } can be omitted 1:"
|
||
|
if { echo foo; } then { echo bar; } fi
|
||
|
|
||
|
echo "Semicolons after } can be omitted 2:"
|
||
|
while { echo foo; } do { echo bar; break; } done
|
||
|
|
||
|
echo "Semicolons after fi can be omitted:"
|
||
|
while if echo foo; then echo bar; fi do echo baz; break; done
|
||
|
|
||
|
echo Done:$?
|