|
|
|
|
|
by marcoms
3440 days ago
|
|
For me what's quite unnerving about `extern crate` is that the `extern` keyword has another function, that is to declare foreign functions [0]. `extern crate` on the other hand, is not an extension of `extern` but serves a completely different purpose. 0: https://doc.rust-lang.org/book/ffi.html |
|