Skip to main content

python

Macro python 

Source
macro_rules! python {
    ($code:expr) => { ... };
    (-> $ty:ty, $code:expr) => { ... };
    ($locals:expr, $code:expr) => { ... };
    ($locals:expr, -> $ty:ty, $code:expr) => { ... };
}
Expand description

Simple macro to run Python code Usage: python!(“print(‘Hello from Python’)”)