backup
[platform/upstream/libzypp.git] / devel / devel.jkupec / play.cc
1 #include <iostream>
2
3 #include "zypp/base/LogTools.h"
4
5 using std::endl;
6 using std::cout;
7
8
9 // ---------------------------------------------------------------------------
10
11 int main( int argc, const char * argv[] )
12 {
13   --argc; ++argv; // skip arg 0
14
15   cout << "done" << endl;
16   return 0;
17 }
18