Привет, скачал новый Netbeans 7.0, как обычно начал писать прогу (любую, даже простейшую), но при компиляции всегда получаю вот что:
«/usr/bin/make» -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf make[1]: Entering directory `/home/maxy/CppApplication_1' «/usr/bin/make» -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/cppapplication_1 make[2]: Entering directory `/home/maxy/CppApplication_1' mkdir -p dist/Debug/GNU-Linux-x86 g++ -o dist/Debug/GNU-Linux-x86/cppapplication_1 build/Debug/GNU-Linux-x86/main.o build/Debug/GNU-Linux-x86/newfile.o build/Debug/GNU-Linux-x86/newfile.o: In function `main': /home/maxy/CppApplication_1/newfile.cpp:5: multiple definition of `main' build/Debug/GNU-Linux-x86/main.o:/home/maxy/CppApplication_1/main.cpp:15: first defined here collect2: ld returned 1 exit status make[2]: *** [dist/Debug/GNU-Linux-x86/cppapplication_1] Error 1 make[2]: Leaving directory `/home/maxy/CppApplication_1' make[1]: *** [.build-conf] Error 2 make[1]: Leaving directory `/home/maxy/CppApplication_1' make: *** [.build-impl] Error 2
BUILD FAILED (exit value 2, total time: 234ms)
Понятно, что дело не в коде, а с чем конкретно не знаю (мб права). Если что, вот код
#include <iostream> using namespace std;
int main() { int a; for (int i=0;i<10;i++) { a=i+1; cout << a; } }