test3.cpp 338 B

123456789101112
  1. // Copyright 2019 Dmitry Arkhipov
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE.txt or copy at
  4. // https://www.bfgroup.xyz/b2/LICENSE.txt)
  5. #include <string>
  6. #include <iostream>
  7. int main(int, char const** argv) {
  8. return VARIANT == std::string(argv[1]) ? EXIT_SUCCESS : EXIT_FAILURE;
  9. }