package
0.0.1-rc1
Repository: https://github.com/xmapst/autoexecflow.git
Documentation: pkg.go.dev

# README

argparse

Usage

-- script.lua
local argparse = require "argparse"

local parser = argparse("script", "An example.")
parser:argument("input", "Input file.")
parser:option("-o --output", "Output file.", "a.out")
parser:option("-I --include", "Include locations."):count("*")

local args = parser:parse()

# Functions

Loader is the module loader function.
Preload adds inspect to the given Lua state's package.preload table.