Skip to content

Instantly share code, notes, and snippets.

@vvuk
Created October 6, 2016 20:56
Show Gist options
  • Select an option

  • Save vvuk/01f3c9199098264e98be07acbb2f798e to your computer and use it in GitHub Desktop.

Select an option

Save vvuk/01f3c9199098264e98be07acbb2f798e to your computer and use it in GitHub Desktop.
struct SomeStruct {
}
impl SomeStruct {
fn hello() {
println!("Hello");
}
}
fn main() {
SomeStruct::hello();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment