Skip to content

Instantly share code, notes, and snippets.

@Winwardo
Created September 24, 2019 15:35
Show Gist options
  • Save Winwardo/7e8f405af068eba82c127b63a6907ec0 to your computer and use it in GitHub Desktop.
Save Winwardo/7e8f405af068eba82c127b63a6907ec0 to your computer and use it in GitHub Desktop.
struct MyStruct {
value: u8
}
impl MyStruct {
pub fn Create() -> MyStruct {
MyStruct {
value: 7u8
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment