1#include <iostream>
2#include <filesystem>
3
4struct hello_world {
5 const char* hello;
6 const char* world;
7};
8
9int main ()
10{
11 hello_world hw = {
12 .hello = "hello, ",
13 .world = "world!"
14 };
15
16 std::cout << hw.hello << hw.world << std::endl;
17 return 0;
18}