2024-04-10 10:39:10 +02:00
|
|
|
#include <add.h>
|
2024-04-08 00:41:29 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main(int argc, const char **argv) {
|
2024-04-08 01:40:00 +02:00
|
|
|
printf("Hello, World!\n");
|
2024-04-10 10:39:10 +02:00
|
|
|
printf("add(1, 2) = %d\n", add(1, 2));
|
2024-04-08 01:40:00 +02:00
|
|
|
return 0;
|
2024-04-08 00:41:29 +02:00
|
|
|
}
|