1 2 3 4 5 6 7 8 9 10
use std::cell::RefCell; use crate::runtime::{builder::RuntimeBuilder, sync_rt::PendingJulia}; thread_local! { #[doc(hidden)] pub static JULIA: RefCell<PendingJulia<>> = { RefCell::new(unsafe {RuntimeBuilder::new().start().unwrap() }) } }