Skip to content

Commit 34c2b0d

Browse files
committed
add comment
1 parent 4aa113b commit 34c2b0d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main.rs

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ fn main() {
9090
println!("Problem {} has no rust version.", problem.question_id);
9191
return;
9292
}
93+
// not sure this can be async
9394
async {
9495
mod_file_addon.lock().unwrap().push(format!(
9596
"mod p{:04}_{};",
@@ -99,6 +100,8 @@ fn main() {
99100
}
100101
.await;
101102
let code = code.unwrap();
103+
// not sure this can be async
104+
// maybe should use async-std io
102105
async { deal_problem(&problem, &code, false) }.await
103106
})
104107
.unwrap(),

0 commit comments

Comments
 (0)