Open abhi18av opened 7 years ago
The specific problems that I outlined here might not be that important, I can understand, but the point is RosettaCode
could essentially prove to be a great resource for iterating on Corrode
. Here's a repository using which you can isolate all the tasks done in C
Is @jameysharp still alive?
At least he was still alive 11 hours ago!
Hi again @jameysharp
Have you thought about using Corrode on small-ish
C
code?I was experimenting with the
C
language tasks fromRosettaCode
but the errors I keep running into are sort of recurrent.Let's take this for example
a+b-1.c
After running corrode I get two files
Only the first one is saved.
I rename it as per rust conventions, so the compiler doesn't complain.
a_plus_b_1.rs
And when I try to compile it with
rustc
, I run into the following errorThen I remove/comment/modify the
line 37
and the errors are related to usage of variable, which are to be read throughstdin