commit efb85ed9ca3d5dc61b9fe8afdf261a0c3cde0105 Author: Jonathan Bernard Date: Wed Jul 27 10:20:59 2022 -0500 Initial implementation. diff --git a/.randomize.nimble.swp b/.randomize.nimble.swp new file mode 100644 index 0000000..764e658 Binary files /dev/null and b/.randomize.nimble.swp differ diff --git a/randomize b/randomize new file mode 100755 index 0000000..4125a5a Binary files /dev/null and b/randomize differ diff --git a/randomize.nimble b/randomize.nimble new file mode 100644 index 0000000..d60c698 --- /dev/null +++ b/randomize.nimble @@ -0,0 +1,13 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Simple util that randomizes its inputs." +license = "MIT" +srcDir = "src" +bin = @["randomize"] + + +# Dependencies + +requires "nim >= 1.6.6, docopt" diff --git a/src/.randomize.nim.swp b/src/.randomize.nim.swp new file mode 100644 index 0000000..ddef704 Binary files /dev/null and b/src/.randomize.nim.swp differ diff --git a/src/randomize.nim b/src/randomize.nim new file mode 100644 index 0000000..c24144f --- /dev/null +++ b/src/randomize.nim @@ -0,0 +1,27 @@ +# This is just an example to get you started. A typical binary package +# uses this file as the main entry point of the application. + +import std/random, std/strutils +import docopt + +when isMainModule: + let doc = """ +randomize + +Usage: + randomize [options] ... + +Options: + -h --help Show this usage information. + -c --choose Choose at random from the given input. +""" + + let args = docopt(doc, version = "randomized 0.1.0") + randomize() + var randomized = @(args[""]) + shuffle(randomized ) + + let numToChoose = + if args["--choose"]: parseInt($args["--choose"]) + else: randomized.len + echo randomized[0..