1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
pub use polyhorn_macros::*;

#[cfg(target_os = "ios")]
pub use polyhorn_ios::*;

#[macro_export]
macro_rules! with {
    (($($name:ident),*), $($tt:tt)*) => {{
        $(
            let $name = $name.clone();
        )*
        move $($tt)*
    }};
}