mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
13 lines
176 B
C
13 lines
176 B
C
// Copyright (c) TribuFu. All Rights Reserved
|
|
|
|
#include "stdio.h"
|
|
|
|
#include "TribuFu.h"
|
|
|
|
extern int32_t Hello(void);
|
|
|
|
int main()
|
|
{
|
|
printf("TribuFu SDK = %d\n", Hello());
|
|
}
|