main.cpp 277 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// Headers are available because we added the pls target
#include <pls/library.h>

int main() {
    // All interfaces are scoped in the pls namespace...
    // ...explicitly name it...
    pls::hello();
    // ...or use the namespace...
    using namespace pls;
    hello();
}