summaryrefslogtreecommitdiffhomepage
path: root/example/example_03_hello_world_toml/hello_world.cc
blob: e259b1a95073556ed5305c1acf5106868d80449e (plain)
1
2
3
4
5
6
#include <iostream>

int main(int argc, char** argv) {
  std::cout << "hello, world!\n";
  return 0;
}