Skip to content

zachmatson/ArgMacros.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ArgMacros

Performant, flexible, macro-based, Julia package for parsing command line arguments.
Uses macros to generate the parsing code within your script, directly storing results in typed local variables, an autogenerated custom struct type, NamedTuple, or Dict

Installation

Install ArgMacros using Julia's Pkg package manager. Enter the Pkg prompt by typing ] at the REPL and then install:

(@v1.5) pkg> add ArgMacros

Then load ArgMacros into your script with using ArgMacros.

Usage

Please read the documentation before using this package.