Up | Next | Prev | PrevTail | Tail |
The identifier end
has two separate uses.
1) Its use in a begin
… end
bracket has been discussed in connection with compound
statements.
2) Files to be read using in
should end with an extra end
; command. The reason for this
is explained in the section on the in
command. This use of end
does not allow an
immediately preceding end
(such as the end
of a procedure definition), so we advise
using ;end;
there.
Up | Next | Prev | PrevTail | Front |