root/mylib/trunk/rconfig/hello_world.cpp

Revision 693, 203 bytes (checked in by tapted, 2 years ago)

Add hello world

  • Property svn:eol-style set to native
  • Property svn:keywords set to author date id revision url Rev Revision
Line 
1#include <iostream>
2#include "rconfig.h"
3
4std::string RCFILE_CONFIGVAR(world, "world!");
5
6int main() {
7  RConfig::rcfile_parse("config.txt");
8  std::cout << "Hello " << world << std::endl;
9  return 0;
10}
Note: See TracBrowser for help on using the browser.