mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 18:40:58 +01:00
17 lines
441 B
Text
17 lines
441 B
Text
local ffi = require("@lune/ffi")
|
|
local c = ffi.c
|
|
|
|
local testdir = "./tests/ffi/external_print"
|
|
local compile = require("../utility/compile")
|
|
compile(`{testdir}/lib.c`, `{testdir}/lib.so`)
|
|
local lib = ffi.open(`{testdir}/lib.so`)
|
|
|
|
local function test_hello_world()
|
|
local hello_world_info = c.fn({}, c.void)
|
|
|
|
local hello_world_callable = hello_world_info:callable(lib:find("hello_world"))
|
|
|
|
hello_world_callable(nil)
|
|
end
|
|
|
|
test_hello_world()
|