Dpt/ - Daily Programming Thread

Old thread: What are you working on, Jow Forums?

Attached: 1515756027790.png (1000x793, 638K)

Other urls found in this thread:

javascript.info/
twitter.com/SFWRedditImages

ur mum

first for rolling your own crypto

non-strict semantics suck

okay i decided to learn rust. this is probably the greatest thing slice bread desu. fuck c++

Will cucking myself to the Rust compiler make me a better programmer? Why or why not?

Trannies shouldn't be programming.
Find a new hobby, faggots.

I think you're just mad because your programming socks didn't fit.

both strict and lazy have problems, lookup cbpv

whats more performant in rust?
let foo: [u8; 64] = [1;64];
test(foo.clone());
fn test(x: [u8;64]) {}

or
let mut foo: [u8; 64] = [1;64];
foo = test(foo);

fn test(x: [u8;64]) -> [u8;64] { return x; }