Packages

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

Current section

Files

Jump to
kirala_l4u src l4u@global_ffi.erl
Raw

src/l4u@global_ffi.erl

-module(l4u@global_ffi).
-compile(export_all).
get_with_default(Key,DefaultValue) ->
case persistent_term:get(Key) of
undefined ->
DefaultValue;
Value ->
Value
end.