Преглед на файлове

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 преди 11 години
родител
ревизия
37ffcd29ca
променени са 1 файла, в които са добавени 9 реда и са изтрити 0 реда
  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.