1
0
mirror of https://github.com/rfivet/stm32bringup.git synced 2024-09-28 19:05:56 -04:00
stm32bringup/hello.c

14 lines
195 B
C
Raw Normal View History

2020-11-27 23:58:58 -05:00
/* hello.c -- hello there
** Copyright (c) 2020 Renaud Fivet
*/
#include <stdio.h>
#include <stdlib.h>
int main( void) {
2020-11-27 23:58:58 -05:00
puts( "hello, world") ;
return EXIT_SUCCESS ;
}
/* end of hello.c */