FoenixToolbox/samples/hello/hello.c

10 lines
219 B
C
Raw Normal View History

#include "../../client/src/include/toolbox.h"
#include <string.h>
int main(int c, char * argv[]) {
char * message = "Hello, Foenix Toolbox!\n";
sys_chan_write(0, (uint8_t *)message, strlen(message));
while (1) ;
}