Packages
kirala_l4u
0.1.1
An embedded lisp interpreter based on the gleam implementation of MAL lisp.
Current section
Files
Jump to
Current section
Files
src/l4u_bif_lib_ffi.mjs
import {get_gleam_bridge} from "./l4u_sys_bridge_ffi.mjs";
let api = get_gleam_bridge();
//
export function invoke_native_function(ntfun,args) {
Reflect.apply(ntfun, undefined, args);
};