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