A string formatting function has a lone % at the end of the format string, implying that the rest of the
specifier is missing. If a literal % is intended in the output, use the standard %% to
achieve that.
module fly;
initial $display("Hello World %");
endmodule
module fly;
initial $display("Hello World %%");
endmodule