// Headers are available because we added the pls target #include int main() { // All interfaces are scoped in the pls namespace... // ...explicitly name it... pls::hello(); // ...or use the namespace... using namespace pls; hello(); }