diff options
Diffstat (limited to 'Tests/Tutorial/Step1/directions.txt')
-rw-r--r-- | Tests/Tutorial/Step1/directions.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/Tutorial/Step1/directions.txt b/Tests/Tutorial/Step1/directions.txt index 10f2583..827d775 100644 --- a/Tests/Tutorial/Step1/directions.txt +++ b/Tests/Tutorial/Step1/directions.txt @@ -52,14 +52,13 @@ make use of the version numbers. The resulting source code is listed below. int main (int argc, char *argv[]) { - if (argc < 2) - { + if (argc < 2) { std::cout << argv[0] << " Version " << Tutorial_VERSION_MAJOR << "." << Tutorial_VERSION_MINOR << std::endl; std::cout << "Usage: " << argv[0] << " number" << std::endl; return 1; - } + } double inputValue = atof(argv[1]); |