aboutsummaryrefslogtreecommitdiff
path: root/tests/variable/representation/driver.cxx
blob: ecff9e2cab43d85e64ef3b52bbb3bf28d35260b0 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>

using namespace std;

int
main (int argc, const char* argv[])
{
  for (int i (1); i < argc; ++i)
    cout << "'" << argv[i] << "'" << endl;
}