Skip to content

Commit

Permalink
updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
treefrogframework committed Feb 22, 2022
1 parent b4f426d commit d72d301
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,12 @@ Specify options for compiler or linker with "CompileOptions: " word. In this exa
#include <iostream>
#include <cmath>
#include <cstdlib>
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
Expand Down

0 comments on commit d72d301

Please sign in to comment.