feat(CLangDoc): support C | 支持 C

This commit is contained in:
林万程
2024-02-09 15:59:58 +08:00
parent 62c52fa93d
commit 335d9fffff
10 changed files with 90 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
#include <stdio.h>
/*
* a
*/
int a = 1;
int main() {
print()
int b = a;
return 0;
}
/*
* OCReferenceElement
* Language: ObjectiveC
*/
void print(){
printf("Hello, World!\n");
}