mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
12 lines
416 B
Text
12 lines
416 B
Text
local ffi = require("@lune/ffi")
|
|
local lib = require("../utils/compile")("./tests/ffi/external_closure/lib.c")
|
|
local c = ffi.c
|
|
|
|
-- Create closure
|
|
local helloWorldInfo = c.fn({}, c.void)
|
|
local helloWorld = helloWorldInfo:closure(function()
|
|
print("Hello world in lua closure!")
|
|
end)
|
|
|
|
local callHelloWorld = c.fn({ helloWorldInfo }, c.void):callable(lib:find("call_hello_world"))
|
|
callHelloWorld(nil, helloWorld:ref())
|