aboutsummaryrefslogtreecommitdiffstats
path: root/tests/simple/string_format.v
blob: cb7b419ac279457d492880b8c405c410fad9552b (plain)
1
2
3
4
5
6
7
module string_format_top;
	parameter STR = "something interesting";
	initial begin
		$display("A: %s", STR);
		$display("B: %0s", STR);
	end
endmodule