Initial implementation.

This commit is contained in:
Jonathan Bernard 2022-07-27 10:20:59 -05:00
commit efb85ed9ca
5 changed files with 40 additions and 0 deletions

BIN
.randomize.nimble.swp Normal file

Binary file not shown.

BIN
randomize Executable file

Binary file not shown.

13
randomize.nimble Normal file
View File

@ -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"

BIN
src/.randomize.nim.swp Normal file

Binary file not shown.

27
src/randomize.nim Normal file
View File

@ -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] <value>...
Options:
-h --help Show this usage information.
-c --choose <count> Choose <count> at random from the given input.
"""
let args = docopt(doc, version = "randomized 0.1.0")
randomize()
var randomized = @(args["<value>"])
shuffle(randomized )
let numToChoose =
if args["--choose"]: parseInt($args["--choose"])
else: randomized.len
echo randomized[0..<numToChoose].join("\p")