Advertisement
tyler569

Untitled

May 4th, 2017
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.21 KB | None | 0 0
  1.  
  2. type
  3.   Foo = object
  4.     a, b, c, d: ref int
  5.  
  6. # compiles to
  7. # (NI is `long long int` on my machine - defined in nimbase.h)
  8.  
  9. struct  Foo_gTstHTAF3QSjpQUtVcW29bQ  {
  10.   NI* a;
  11.   NI* b;
  12.   NI* c;
  13.   NI* d;
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement