13 lines
337 B
C
13 lines
337 B
C
/* *************************************************************** *
|
|
* AMIGA VBCC code example *
|
|
* (c) 01.05.2017 Paolo Iocco *
|
|
* *
|
|
***************************************************************** */
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void){
|
|
printf("Ciao mondo!\n\n");
|
|
return(0);
|
|
}
|