Old thread: What are you working on, Jow Forums?
Dpt/ - Daily Programming Thread
Dominic Rivera
Other urls found in this thread:
Grayson Stewart
ur mum
Logan Gray
first for rolling your own crypto
David Martin
non-strict semantics suck
Thomas Edwards
okay i decided to learn rust. this is probably the greatest thing slice bread desu. fuck c++
Robert Bell
Will cucking myself to the Rust compiler make me a better programmer? Why or why not?
Sebastian James
Trannies shouldn't be programming.
Find a new hobby, faggots.
Hunter Hall
I think you're just mad because your programming socks didn't fit.
Hudson Hill
both strict and lazy have problems, lookup cbpv
Nathaniel Rogers
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; }