Skip to content

Commit

Permalink
Add example file for ast dumping
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed May 27, 2021
1 parent 1706a39 commit c819d53
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/c_files/pragmas.c
@@ -0,0 +1,15 @@
int i;

#pragma joe

int main() {
int a = 1;
#pragma inmain

for (int i = 0; i < 3; i++) {
#pragma infor
a += i;
}

return a;
}

0 comments on commit c819d53

Please sign in to comment.