SMOLNET PORTAL home about changes
--
-- This is a basic hello world example.
--

--
-- Create (or replace) the new "helloworld" procedure.
-- NOTE: this can be run with "CALL"
--
CREATE OR REPLACE PROCEDURE helloworld() AS $$
DECLARE
BEGIN
    RAISE NOTICE 'Hello World!';
END;
$$ LANGUAGE plpgsql;
Response: text/plain
Original URLgopher://sdf.org/0/users/rsdoiel/blog/2022/08/24/hellowor...
Content-Typetext/plain; charset=utf-8