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 4aa113b commit 34c2b0dCopy full SHA for 34c2b0d
src/main.rs
@@ -90,6 +90,7 @@ fn main() {
90
println!("Problem {} has no rust version.", problem.question_id);
91
return;
92
}
93
+ // not sure this can be async
94
async {
95
mod_file_addon.lock().unwrap().push(format!(
96
"mod p{:04}_{};",
@@ -99,6 +100,8 @@ fn main() {
99
100
101
.await;
102
let code = code.unwrap();
103
104
+ // maybe should use async-std io
105
async { deal_problem(&problem, &code, false) }.await
106
})
107
.unwrap(),
0 commit comments