sv2v/test/basic/inc.v

8 lines
107 B
Coq
Raw Normal View History

module top;
integer x = 0;
initial begin
x = x + 1;
$display(x);
end
endmodule