Store Procedure Function PostgreSQL

postgres=#
postgres=#
postgres=# CREATE FUNCTION sales_tax(subtotal real, OUT tax real) AS $$
postgres$# BEGIN
postgres$#    tax := subtotal * 0.06;
postgres$# END;
postgres$# $$ LANGUAGE plpgsql;
postgres=#
postgres=# select sales_tax(100);
   REATE
 sales_tax
-----------
         6
(1 row)
postgres=#
postgres=# drop function sales_tax(subtotal real, OUT tax real);
DROP FUNCTION
postgres=#
postgres=#