mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
15 lines
215 B
C++
15 lines
215 B
C++
// Copyright (c) TribuFu. All Rights Reserved
|
|
|
|
#include <iostream>
|
|
|
|
#include "TribuFu.h"
|
|
|
|
using namespace std;
|
|
|
|
extern int32_t Hello();
|
|
|
|
int main()
|
|
{
|
|
cout << "TribuFu SDK = " << (int)TribuFu::Hello() << "\n";
|
|
}
|