IMP  2.0.1
The Integrative Modeling Platform
imp_example_app.cpp
1 /** This file is in the public domain.
2 
3  */
4 
5 #include <IMP/log.h>
6 #include <IMP/base/flags.h>
7 
8 int main(int argc, char* argv[]) {
9  IMP::base::setup_from_argv(argc, argv, "An example application");
10  IMP_LOG(IMP::SILENT, "Hello world" << std::endl);
11  return 0;
12 }