mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
8 lines
132 B
C++
8 lines
132 B
C++
#include <iostream>
|
|
#include <mylib/mylib.hpp>
|
|
|
|
int main() {
|
|
std::cout << mylib::message() << std::endl;
|
|
return 0;
|
|
}
|