mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
a1ede89ae2
git-svn-id: file:///svn/tokudb@1214 c7de825b-a66e-492c-adef-691d508d4ae1
12 lines
210 B
C++
12 lines
210 B
C++
#include <db_cxx.h>
|
|
|
|
|
|
#include <iostream>
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
Dbt dbt;
|
|
dbt.set_size(3);
|
|
cout << "Hello World!" << endl; cout << "Welcome to C++ Programming" << endl;
|
|
return 0;
|
|
}
|