Oddbean new post about | logout
 nostr:npub1emrmf75u9xyrd634cjc3an7462gwz49ysh2c2znu5q8fld8enhtsnhwh52 To be honest I don't like this behavior in Julia because you normally don't specify the return type in Julia. Therefore, it can happen that you return something by mistake.
If you want to return nothing, you have to literally add "return nothing" to the end of the body because semicolons are also not common in Julia.

But with Rust, there are no surprises ;)