There are many ways to print the classical "Hello world!" message in VHDL. The simplest of all is probably something like:
-- File hello_world.vhd
entity hello_world is
end entity hello_world;
architecture arc of hello_world is
begin
assert false report "Hello world!" severity note;
end architecture arc;