diff options
author | Maxim Fedorov <maximfca@gmail.com> | 2023-02-12 21:39:43 -0800 |
---|---|---|
committer | John Högberg <john@erlang.org> | 2023-04-19 11:19:18 +0200 |
commit | 1b53f38d321e3ca870518578b086cf4562a522e5 (patch) | |
tree | de1982281c07291f60591e3d4d33b1349f055461 /lib/stdlib/src/stdlib.app.src | |
parent | f9cdb96f3ab07b378a66ebfb1473184374f4e16f (diff) | |
download | erlang-1b53f38d321e3ca870518578b086cf4562a522e5.tar.gz |
[argparse] Command line parser for Erlang
Inspired by Python argparse library.
Diffstat (limited to 'lib/stdlib/src/stdlib.app.src')
-rw-r--r-- | lib/stdlib/src/stdlib.app.src | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/stdlib/src/stdlib.app.src b/lib/stdlib/src/stdlib.app.src index 69bff1511b..a71ad0a954 100644 --- a/lib/stdlib/src/stdlib.app.src +++ b/lib/stdlib/src/stdlib.app.src @@ -21,7 +21,8 @@ {application, stdlib, [{description, "ERTS CXC 138 10"}, {vsn, "%VSN%"}, - {modules, [array, + {modules, [argparse, + array, base64, beam_lib, binary, |