fix destination path for dictionary

This commit is contained in:
Joseph Montanaro 2022-01-30 21:58:10 -08:00
parent b446288ad2
commit b9d861a8fa
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ task(dictionary, "Generate dictionary from BNC XML files"):
echo output.strip().splitlines()[^1] echo output.strip().splitlines()[^1]
task(pack, "Pack dictionary into fixed-width file and compress"): task(pack, "Compress dictionary file"):
echo "Packing dictionary" echo "Packing dictionary"
echo runCmd("nim c --run src/dictionary.nim data/dictionary.txt data/dictionary.pack") echo runCmd("nim c --run src/dictionary.nim data/dictionary.txt data/dictionary.pack")

View File

@ -67,7 +67,7 @@ iterator iterWords*(filename: string): string =
when isMainModule: when isMainModule:
let path = r"C:\Users\Joe\Documents\Code\words\BNC\2554\download\Texts\A\A0\A00.xml" let path = r"C:\Users\Joe\Documents\Code\passphrase\data\BNC\2554\download\Texts\A\A0\A00.xml"
var count = 0 var count = 0
for word in iterWords(path): for word in iterWords(path):
inc count inc count