10 lines
139 B
Coq
10 lines
139 B
Coq
|
|
module top;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
if ("this matches" == "this\
|
||
|
|
matches") $display("PASSED");
|
||
|
|
else $display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|