mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
15 lines
263 B
C
15 lines
263 B
C
|
/*
|
||
|
!!DESCRIPTION!! minimal Program, checks if the Compiler and testsuite framework works
|
||
|
!!ORIGIN!! testsuite
|
||
|
!!LICENCE!! Public Domain
|
||
|
!!AUTHOR!! Groepaz/Hitmen
|
||
|
*/
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
#if 1
|
||
|
printf("it works :)\n");
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|