Skip to content

Instantly share code, notes, and snippets.

@petrochenkov
Last active March 29, 2016 19:59
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 petrochenkov/72d6e2c5803ab89fafd6c9abc7791239 to your computer and use it in GitHub Desktop.
Save petrochenkov/72d6e2c5803ab89fafd6c9abc7791239 to your computer and use it in GitHub Desktop.
// Needs to written only once, it probably makes sense to put this into the standard library
mod primitive {
mod detail {
pub type __u32 = u32;
}
pub use self::detail::__u32 as u32;
}
pub use primitive::u32 as Carrot;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment