#include <iostream>
#include <string>

using namespace std;

#define STRINGIFY(x) #x

typedef enum {Linux, Windows, MacOS} os_type;

int main() {
    os_type myOS = Linux;

    // Using the #define and # operator
    cout << "my os is: " << STRINGIFY(Linux) << endl;

    return 0;
}