mirror of
https://github.com/kakopappa/how-to-make-a-precompiled-arduino-library-for-esp8266-esp32.git
synced 2025-07-23 12:01:03 +03:00
6 lines
62 B
C++
6 lines
62 B
C++
#include "hello.h"
|
|
|
|
int add(int x, int y) {
|
|
return x + y;
|
|
}
|