mirror of
https://github.com/mlua-rs/mlua
synced 2026-06-08 16:05:43 +00:00
16 lines
252 B
Rust
16 lines
252 B
Rust
use std::cell::Cell;
|
|
use std::rc::Rc;
|
|
|
|
use mlua::{Lua, Result};
|
|
|
|
fn main() -> Result<()> {
|
|
let lua = Lua::new();
|
|
|
|
let data = Rc::new(Cell::new(0));
|
|
|
|
lua.create_function(move |_, ()| Ok(data.get()))?
|
|
.call::<i32>(())?;
|
|
|
|
Ok(())
|
|
}
|