Skip to content

Instantly share code, notes, and snippets.

@daym
Created August 17, 2021 16:18
Show Gist options
  • Select an option

  • Save daym/7cdb13c4fa7de97f96ceafa3dd97fce1 to your computer and use it in GitHub Desktop.

Select an option

Save daym/7cdb13c4fa7de97f96ceafa3dd97fce1 to your computer and use it in GitHub Desktop.
/* gcc -fplan9-extensions foo1.c */
struct H {
int a;
};
struct S {
struct H;
int b;
};
int main() {
struct S s = { a: 5, b: 3 };
return s.a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment