Skip to content

Instantly share code, notes, and snippets.

View Bennyelg's full-sized avatar

Benny Elgazar Bennyelg

View GitHub Profile
@Bennyelg
Bennyelg / merge_sort.nim
Created May 29, 2017 07:39
merge_sort implementation.
import strutils
import math
#[
Module name: Implementation of MergeSort recursion.
Author: Benny E.
Mail: elgazarbenny at gmail.com
]#
import strutils
import sequtils
import os
import tables
proc parseArguments*(inputString: seq[string]): Table[string, string] =
var arguments = newSeq[string]()
if inputString.len == 0:
discard
else:
import "../src/parse_args.nim"
import sequtils, strutils, os
import tables
var res: Table[string, string]
res = parseArguments(commandLineParams)
echo res