Next: Echo, Previous: Assignments, Up: Statements [Contents][Index]
pass
statementThe pass
statement has no effect. It is used in places
where no statement is needed, but the language syntax requires one:
on poll $f do when success: pass when not_found or failure: reject 550 done