← index
cplusplus17.Examples/features/inline_variables/main.cpp
Source: cplusplus17.Examples/features/inline_variables/main.cpp
#include"header_only.hpp"
#include "point.hpp"
#include<iostream>

int main() {
    std::cout << "Hello C++17!\n";
    int x = 0,y = 0,w = 0,h = 0;
    square::background.get(x,y,w,h);
    std::cout << "Rect is: " << x << ", " << y << ", " << w << ", " << h << "\n";
    return 0;
}