Skip to content

Commit a4f8644

Browse files
authored
Update main.cpp
1 parent 7c46674 commit a4f8644

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

source/main.cpp

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#include <omp.h>
1313
#endif
1414

15+
#include <iostream>
16+
1517
int main(int argc, char** argv)
1618
{
1719
/*
@@ -52,5 +54,11 @@ int main(int argc, char** argv)
5254
fftw_cleanup_threads();
5355
#endif
5456

57+
if(true)
58+
std::cout<<true<<std::endl;
59+
60+
for(int i=0; i<10; ++i)
61+
std::cout<<i<<std::endl;
62+
5563
return 0;
56-
}
64+
}

0 commit comments

Comments
 (0)