Packages

An embedded lisp interpreter based on the gleam implementation of MAL lisp.

Current section

Files

Jump to
kirala_l4u src l4u_bif_lib_ffi.mjs
Raw

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);
};