aider/tests/fixtures/languages/c/test.c
2025-03-12 14:39:59 -07:00

21 lines
345 B
C

#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
#include <stdio.h>
/**
* The main entry point of the program
* @return 0 on success
*/
int main(int argc, char **argv) {
printf("Hello, World!\n");
return 0;
}
// Helper function
void print_message(const char *message) {
printf("%s\n", message);
}