mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-03 10:33:25 +08:00
10 lines
139 B
C++
10 lines
139 B
C++
#include <iostream>
|
|
using namespace std;
|
|
extern "C" {
|
|
#include "add.h"
|
|
}
|
|
int main() {
|
|
std::cout << add(2, 3) << std::endl;
|
|
return 0;
|
|
}
|