Current section
Files
Jump to
Current section
Files
src/glisp.erl
-module(glisp).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([main/0]).
-if(?OTP_RELEASE >= 27).
-define(MODULEDOC(Str), -moduledoc(Str)).
-define(DOC(Str), -doc(Str)).
-else.
-define(MODULEDOC(Str), -compile([])).
-define(DOC(Str), -compile([])).
-endif.
-file("src/glisp.gleam", 6).
?DOC(
" Main entry point for the REPL application.\n"
" This function initializes and runs the Read-Eval-Print Loop,\n"
" providing an interactive environment for command execution.\n"
).
-spec main() -> nil.
main() ->
glisp@repl:main_repl().