Skip to content

Commit d72d301

Browse files
updated README.md
1 parent b4f426d commit d72d301

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,12 @@ Specify options for compiler or linker with "CompileOptions: " word. In this exa
8989
#include <iostream>
9090
#include <cmath>
9191
#include <cstdlib>
92-
using namespace std;
9392

9493
int main(int argc, char *argv[])
9594
{
9695
if (argc != 2) return 0;
9796

98-
cout << sqrt(atoi(argv[1])) << endl;
97+
std::cout << sqrt(atoi(argv[1])) << std::endl;
9998
return 0;
10099
}
101100
// CompileOptions: -lm

0 commit comments

Comments
 (0)