Packages

GLEB128 is a small Gleam library that provides functions for encoding and decoding LEB128 (Little Endian Base 128) integers.

Current section

Files

Jump to
gleb128 src runtime_ffi.erl
Raw

src/runtime_ffi.erl

-module(runtime_ffi).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([get_current_runtime/0]).
-export_type([runtime/0]).
-type runtime() :: erlang | java_script.
-spec get_current_runtime() -> runtime().
get_current_runtime() ->
erlang.