We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ca26f commit baf176dCopy full SHA for baf176d
.gitignore
@@ -7,4 +7,8 @@
7
/.idea/
8
/old/
9
/**/.mypy_cache
10
-/**/*.pyc
+/**/*.pyc
11
+/**/words
12
+/**/main.dwarf
13
+/**/main
14
+/**/target
example-rust/src/main.rs
@@ -15,7 +15,6 @@ fn main() -> std::io::Result<()> {
15
fs::create_dir_all(outdir)?;
16
let wg = WaitGroup::new();
17
let path = "../data/??/**/*.yml";
18
- // let path = "./bibles/??/**/*.yml";
19
for entry in glob(path).expect("Failed to read glob pattern") {
20
match entry {
21
Ok(path) => {
0 commit comments