mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
5 lines
182 B
Text
5 lines
182 B
Text
local ffi = require("@lune/ffi")
|
|
local lib = require("../utils/compile")("./tests/ffi/external_print/lib.c")
|
|
local c = ffi.c
|
|
|
|
c.fn({}, c.void):callable(lib:find("hello_world"))(nil)
|