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@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.