sv2v/test/basic/string.v

6 lines
158 B
Verilog
Raw Normal View History

module top;
parameter FOO = "some useful string";
localparam BAR = "some other useful string";
initial $display("'%s' '%s'", FOO, BAR);
endmodule