From cce68b97652f95b3aae99627ea576505428f1abc Mon Sep 17 00:00:00 2001 From: shadawck Date: Thu, 16 Feb 2023 19:23:54 +0100 Subject: [PATCH] Add elixir --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index ac38101..5829d0b 100644 --- a/README.md +++ b/README.md @@ -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.