Created
August 17, 2021 16:18
-
-
Save daym/7cdb13c4fa7de97f96ceafa3dd97fce1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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