13 lines
352 B
C
13 lines
352 B
C
/* *************************************************************** *
|
|
* ATARI ST Pure C code example *
|
|
* (c) 22.01.2018 Paolo Iocco *
|
|
* *
|
|
***************************************************************** */
|
|
|
|
#include "stdio.h"
|
|
|
|
int main(void){
|
|
printf("Ciao mondo!\n\n");
|
|
getchar();
|
|
return(0);
|
|
} |