mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
bb929517a8
function old new delta done_word 728 793 +65 parse_stream 2084 2098 +14
11 lines
297 B
Plaintext
Executable File
11 lines
297 B
Plaintext
Executable File
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:$?
|