(Tab 1 - Command Window Style)
REM Mod history ...
REM ..
REM SQL*Plus comments aren't processed here, yet
(Tab 2 - Program Window Style)
create or replace package wibble as
// PL/SQL Comment
procedure setGlobal(p_input pls_integer);
function getGlobal return pls_integer;
end wibble;
(Tab 3 - Program Window Style)
create or replace package body wibble as
g_global pls_integer;
procedure setGlobal(p_input pls_integer) is
begin
g_Global := p_Global;
end setGlobal;
function getGlobal return pls_integer is
begin
return g_Global;
end setGlobal;
end wibble;
(Tab 4 - Command Window Style)
REM More SQL*Plus comments, commands, ...
exec wibble.setGlobal(42);