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