mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
13 lines
224 B
C++
13 lines
224 B
C++
// Created by Anthony Printup on 9/18/2023.
|
|
#include <cstdio>
|
|
|
|
#ifdef WIN32
|
|
extern "C" void library_function();
|
|
#endif
|
|
int main() {
|
|
puts("Hello from cmkr(relative-paths)!");
|
|
#ifdef WIN32
|
|
library_function();
|
|
#endif
|
|
}
|