Packages
Burrito is our answer to the problem of distributing Elixir applications across varied environments. Turn your Elixir application into a simple, self-contained, single-file executable for MacOS, Linux, and Windows.
Current section
Files
Jump to
Current section
Files
lib/util/args.ex
defmodule Burrito.Util.Args do
@moduledoc """
This module provides a method to help fetch CLI arguments passed down
from the Zig wrapper binary.
"""
@spec get_arguments :: list(String.t())
def get_arguments do
:init.get_plain_arguments() |> Enum.map(&to_string/1)
end
end