You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
srs/trunk/research/st/hello-st.cpp

17 lines
250 B
C++

/*
g++ hello-st.cpp ../../objs/st/libst.a -g -O0 -o hello-st && ./hello-st
*/
#include <stdio.h>
#include "../../objs/st/st.h"
void foo() {
st_init();
st_sleep(1);
printf("Hello World, ST!\n");
}
int main() {
foo();
return 0;
}