ark-lang / ark

A compiled systems programming language written in Go using the LLVM framework
https://ark-lang.github.io/
MIT License
682 stars 47 forks source link

References #664

Closed MovingtoMars closed 8 years ago

MovingtoMars commented 8 years ago

How are references supposed to work? Are they C++ like (as if they are values) or Rust-like (where they are pointer which can't be returned from a function).

Right now, I'm assuming they're Rust-like for their ability to be casted to raw pointers.