I am a beginner in oracle sql. I want to test out a simple anonymous block as following from sql plus in expecting "foo" but instead numeric value "2" is returned. I am trying to understand why.
set serveroutput on size 20000;
begin
dbms_output.put_line('foo');
end;
/