Current section
Files
Jump to
Current section
Files
src/argv.erl
-module(argv).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/argv.gleam").
-export([load/0]).
-export_type([argv/0]).
-type argv() :: {argv, binary(), binary(), list(binary())}.
-file("src/argv.gleam", 16).
-spec load() -> argv().
load() ->
{Runtime, Program, Arguments} = argv_ffi:load(),
{argv, Runtime, Program, Arguments}.