there's a certain visual poetry to my badly written code
Does this even compile? I would expect a comma somewhere.
Does this even compile? I would expect a comma somewhere.
@Phosphenes it does! it's rust, so the last expression is the return value of a block. so code like this:
let x = {
let a = 5;
a + 2
}
will set x to 7.