11 lines
136 B
Coq
11 lines
136 B
Coq
|
|
`define PATH /usr/local/bin/
|
||
|
|
`define STRINGIFY(x) `"x`"
|
||
|
|
|
||
|
|
module test();
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
$display( `STRINGIFY(`PATH) );
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|