CREATE FUNCTION a_function () RETURNS int4 AS '
DECLARE
an_integer 1nt4;
BEGIN
an_integer := 10 * 10:
return an_integer;
END:
' LANGUAGE 'plpgsql';