Guest User

Untitled

a guest
Aug 16th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #![feature(crate_visibility_modifier)]
  2.  
  3. #[macro_use]
  4. extern crate serde_derive;
  5.  
  6. #[derive(Serialize)]
  7. crate enum E {
  8. X,
  9. }
  10.  
  11. #[derive(Debug, Clone, Copy, Serialize)]
  12. #[repr(C)]
  13. pub struct Matrix4f32 {
  14. crate data: [f32; 16],
  15. }
  16.  
  17. fn main() {}
Add Comment
Please, Sign In to add comment