library.cpp 142 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
#include "pls/library.h"

#include <iostream>

namespace pls {
    void hello() {
        std::cout << "Hello from PLS!" << std::endl;
    }
}