Skip to content

Instantly share code, notes, and snippets.

@iluxonchik
Last active November 2, 2015 22:36
Show Gist options
  • 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 <[email protected]>"]
[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