Parallelizing Enjarify in Go and Rust
Last year, I rewrote Enjarify in Go and Rust in order to learn more about the languages and compare the difficulty, verbosity, performance…...
Read more »
In Rust, data types – primitives, structs, enums and any other ‘aggregate’
types like tuples and arrays – are dumb. They may have methods but that
is just a convenience (they are just functions). Types have no
relationship with each other. Read more