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