Explorar el Código

first opinion on rust: pointers are hard.

or at least neither easy nor simple. but if something better than C++
with similar performance comes out, maybe it'll stay. or the
docs/tutorials get better, we'll see.
Lucas Stadler %!s(int64=11) %!d(string=hace) años
padre
commit
37ffcd29ca
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. 9 0
      rust/README.md

+ 9 - 0
rust/README.md

@ -0,0 +1,9 @@
1
# Rust
2
3
- when to use? lower level than go (no gc, very direct mapping to
4
    machine instructions), but still types and fun.
5
6
current status:
7
8
- i find it hard to get my head around all the pointer types, when to
9
    use them and why some things result in errors.