diff options
author | JamesP <jlp765@gmail.com> | 2015-11-07 17:47:49 +1000 |
---|---|---|
committer | JamesP <jlp765@gmail.com> | 2015-11-07 17:47:49 +1000 |
commit | 716f84ae4b040f0f6a16e7fde76738ca8e6b0be6 (patch) | |
tree | 28b3fd25d95e201fc3d51717f69f597430f68735 /examples | |
parent | cdd00c4df608232c4822aed72bf7bd56e9cbd80c (diff) | |
download | Nim-716f84ae4b040f0f6a16e7fde76738ca8e6b0be6.tar.gz |
import the new stats lib
Diffstat (limited to 'examples')
-rw-r--r-- | examples/statcsv.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/statcsv.nim b/examples/statcsv.nim index f2cf809e2..983cd555f 100644 --- a/examples/statcsv.nim +++ b/examples/statcsv.nim @@ -3,7 +3,7 @@ # the standard deviation of its columns. # The CSV file can have a header which is then used for the output. -import os, streams, parsecsv, strutils, math +import os, streams, parsecsv, strutils, math, stats if paramCount() < 1: quit("Usage: statcsv filename[.csv]") |