diff --git a/.anjuta/default.profile b/.anjuta/default.profile
new file mode 100644
index 0000000..054294f
--- /dev/null
+++ b/.anjuta/default.profile
@@ -0,0 +1,8 @@
+
+
+
+
+
+
diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db
new file mode 100644
index 0000000..f020943
Binary files /dev/null and b/.anjuta_sym_db.db differ
diff --git a/8008135.anjuta b/8008135.anjuta
new file mode 100644
index 0000000..390fe09
--- /dev/null
+++ b/8008135.anjuta
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/8008135.c b/8008135.c
new file mode 100644
index 0000000..ac6725b
--- /dev/null
+++ b/8008135.c
@@ -0,0 +1,26 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * main.c
+ * Copyright (C) 2019
+ *
+ * 8008135 is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * 8008135 is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see .
+ */
+
+#include
+int main()
+{
+ printf("Hello world\n");
+ return (0);
+}
+
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..dad9fa4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,30 @@
+
+## Created by Anjuta
+
+CC = gcc
+CFLAGS = -g -Wall
+OBJECTS = 8008135.o
+INCFLAGS =
+LDFLAGS = -Wl,-rpath,/usr/local/lib
+LIBS =
+
+all: 8008135
+
+8008135: $(OBJECTS)
+ $(CC) -o 8008135 $(OBJECTS) $(LDFLAGS) $(LIBS)
+
+.SUFFIXES:
+.SUFFIXES: .c .cc .C .cpp .o
+
+.c.o :
+ $(CC) -o $@ -c $(CFLAGS) $< $(INCFLAGS)
+
+count:
+ wc *.c *.cc *.C *.cpp *.h *.hpp
+
+clean:
+ rm -f *.o
+
+.PHONY: all
+.PHONY: count
+.PHONY: clean