include_ppx_string

Macro include_ppx_string 

Source
include_ppx_string!() { /* proc-macro */ }
Expand description

Parse a macro at compile time from a string.

ยงExample

assert_eq!(
    include_ppx_string!("#define A Hello\nA", ".", []),
    "Hello"
);