lmdbal/main.cpp

9 lines
140 B
C++
Raw Normal View History

2022-09-04 10:14:42 +00:00
#include <iostream>
2022-09-04 11:15:31 +00:00
#include <storage.h>
2022-09-04 10:14:42 +00:00
int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}