Packages

A transpiler from a Forth dialect to Elixir AST

Current section

Files

Jump to
exforth lib cfg.ex
Raw

lib/cfg.ex

defmodule Cfg do
@moduledoc """
Configuration helper for ExForth runtime settings.
Provides convenient access to application environment variables
for customizing ExForth behavior.
"""
def get(key), do: Application.get_env(:exforth, key)
def put(key, val), do: Application.put_env(:exforth, key, val)
end