mirror of
https://github.com/mlua-rs/mlua
synced 2026-06-08 16:05:43 +00:00
9 lines
137 B
Rust
9 lines
137 B
Rust
use std::panic::catch_unwind;
|
|
|
|
use mlua::Lua;
|
|
|
|
fn main() {
|
|
let lua = Lua::new();
|
|
catch_unwind(|| lua.create_table().unwrap());
|
|
}
|