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