8 lines
76 B
Rust
8 lines
76 B
Rust
|
struct Blah;
|
||
|
|
||
|
#[pyo3::pyfunction]
|
||
|
fn blah() -> Blah{
|
||
|
Blah
|
||
|
}
|
||
|
|
||
|
fn main(){}
|