diff --git a/README.md b/README.md index cf41888..5709c15 100644 --- a/README.md +++ b/README.md @@ -89,13 +89,12 @@ Specify options for compiler or linker with "CompileOptions: " word. In this exa #include #include #include -using namespace std; int main(int argc, char *argv[]) { if (argc != 2) return 0; - cout << sqrt(atoi(argv[1])) << endl; + std::cout << sqrt(atoi(argv[1])) << std::endl; return 0; } // CompileOptions: -lm