diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-15 17:27:19 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-15 17:27:29 +0300 |
commit | b2436ef9390b9dddb9c010eec5caca40400f8c8b (patch) | |
tree | 43c356dfeb5060066b4bd4b64ea06b1615a07f85 /test/args.cpp | |
parent | WIP: add simple Process class (diff) | |
download | winapi-common-b2436ef9390b9dddb9c010eec5caca40400f8c8b.tar.gz winapi-common-b2436ef9390b9dddb9c010eec5caca40400f8c8b.zip |
rename utility "args" to "echo"
Diffstat (limited to 'test/args.cpp')
-rw-r--r-- | test/args.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/args.cpp b/test/args.cpp deleted file mode 100644 index 470819a..0000000 --- a/test/args.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "winapi-common" project. -// For details, see https://github.com/egor-tensin/winapi-common. -// Distributed under the MIT License. - -#include <iostream> - -int wmain(int argc, wchar_t* argv[]) { - for (int i = 0; i < argc; ++i) { - std::wcout << argv[i] << L'\n'; - } - return 0; -} |