Initial implementation.
This commit is contained in:
commit
efb85ed9ca
BIN
.randomize.nimble.swp
Normal file
BIN
.randomize.nimble.swp
Normal file
Binary file not shown.
13
randomize.nimble
Normal file
13
randomize.nimble
Normal 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
BIN
src/.randomize.nim.swp
Normal file
Binary file not shown.
27
src/randomize.nim
Normal file
27
src/randomize.nim
Normal 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")
|
Loading…
x
Reference in New Issue
Block a user