瀏覽代碼

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.