Zoltan2
Loading...
Searching...
No Matches
testfail.cpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Zoltan2: A package of combinatorial algorithms for scientific computing
4//
5// Copyright 2012 NTESS and the Zoltan2 contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9
10#include <iostream>
11
12int main(int narg, char **arg)
13{
14 if (narg > 1)
15 std::cout << arg[1] << std::endl;
16 else
17 std::cout << "BUMMER" << std::endl;
18 return 0;
19}
int main()