Florian Gilcher
Florian Gilcher
The current slides use this code: ``` rust fn main() { let args: Vec = env::args().collect(); if args.len() > 1 { println!("{}", match read_file(args[1].clone()) { Ok(content) => content, Err(reason) =>...
Hi, I'm part of the Rust community team. We are constantly searching for people working on beginner-level material. I really love the approach this presentation takes, especially around being translated...
Pycco docs have moved, this PR fixes the link.
It would be nice if it was possible to ignore certain indices, at least in the analysis view. It would also be good if indices beginning with `.` were ignored...
The following two programs are translated, but don't compile for the same reason: they use variable and variant names that are keywords in Rust. ```c void foo(int box) { box++;...
Consider the following C code: ```c typedef struct _test test; struct _test { int test; }; static test bar; ``` Corrode fails: ```sh $ corrode uninitialized-global.c ("uninitialized-global.c": line 7): illegal...
Fixes #158
The following code: ```C typedef enum { false, true } boolean; boolean mayFail() { return false; } void avoidErasure() { } void checksForFail() { if (mayFail()) { avoidErasure(); } }...