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

#include <iostream>

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

    int test_adder(int a, int b) {
        return a + b;
    }
13
}