created feature1

pull/4/head^2
polymurph 3 years ago
parent a1abc86f32
commit 5a56bf0bdf

@ -0,0 +1,6 @@
#include "feature1.h"
void feature1()
{
printf("feature1\n");
}

@ -0,0 +1,6 @@
#ifndef _FEATURE1_H_
#define _FEATURE1_H_
void feature1();
#endif

@ -1,8 +1,9 @@
#include "feature1.h"
int main(void)
{
return 0;
printf("Hello, World!");
feature1();
return 0;
}

Loading…
Cancel
Save