PL SQL Programming Oracle PLSQL Tutorial

PL/SQL allows two types of comments: single and multi-line.
Single-line comments start with a delimiter -- and go to the end of the line, as shown here:

declare
  here you should declare variables,
  constants, etc.
   ...
begin
-- here you place your code
    ...
end;
/