Add elixir

This commit is contained in:
shadawck
2023-02-16 19:23:54 +01:00
parent f5f45675fb
commit cce68b9765

View File

@@ -31,6 +31,11 @@
- [gflags](https://github.com/gflags/gflags) : The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used. Online documentation available at:
## Dart
- [args](https://github.com/dart-lang/args) : Parses raw command-line arguments into a set of options and values.
- [dcli](https://github.com/onepub-dev/dcli) : An API and tooling for building cross platform command line (CLI) applications and scripts using the Dart programming language.
## Deno
- [deno-cliffy](https://github.com/c4spar/deno-cliffy) : Command line framework for deno sauropod Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
@@ -57,6 +62,10 @@
- [awesome-dotnet](https://github.com/quozd/awesome-dotnet/blob/master/README.md#cli) by @quozd : A collection of awesome .NET libraries, tools, frameworks, and software.
## Elixir
- [Owl](https://github.com/fuelen/owl) : Owl is a toolkit for writing command-line user interfaces in Elixir.
## Fortran
- [FLAP](https://github.com/szaghi/FLAP) : A KISS pure Fortran Library for building powerful, easy-to-use, elegant command line interfaces.
@@ -149,6 +158,10 @@ etc.
- [Symfony/Console](https://github.com/symfony/Console) : The Console component of symfony eases the creation of beautiful and testable command line interfaces.
## Purescript
- [Optparse](https://github.com/f-o-a-m/purescript-optparse) : Applicative option parser.
## Python
- [Argparse](https://docs.python.org/3/library/argparse.html) : Argparse is the default python module for creating command lines programs. It provides all the features you need to build a simple CLI.