Skip to content

Instantly share code, notes, and snippets.

@iluxonchik
Last active November 2, 2015 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iluxonchik/9c2d926bcf080a75829a to your computer and use it in GitHub Desktop.
Save iluxonchik/9c2d926bcf080a75829a to your computer and use it in GitHub Desktop.
Rust Hello World Lib
[package]
name = "helloworldlib"
version = "0.1.0"
authors = ["ILUXONCHIK <iluxon4ik@hotmail.com>"]
[lib]
name = "helloworldlib"
crate-type = ["dylib"]
#[no_mangle]
pub extern fn hello_from_rust() {
println!("Hello C#! This is Rust.");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment