7 lines
152 B
Rust
7 lines
152 B
Rust
use pyo3::Python;
|
|
|
|
fn main() {
|
|
let foo = if true { "foo" } else { "bar" };
|
|
Python::with_gil(|py| py.import(pyo3::intern!(py, foo)).unwrap());
|
|
}
|