ソースを参照

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.