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