#include "pls/library.h" #include namespace pls { void hello() { std::cout << "Hello from PLS!" << std::endl; } int test_adder(int a, int b) { return a + b; } }