mirror of
https://github.com/jeremysrand/Apple2BuildPipeline.git
synced 2024-10-31 18:04:33 +00:00
21 lines
292 B
C
21 lines
292 B
C
/*
|
|
* ___FILENAME___
|
|
* ___PACKAGENAME___
|
|
*
|
|
* Created by ___FULLUSERNAME___ on ___DATE___.
|
|
* Copyright (c) ___YEAR___ ___ORGANIZATIONNAME___. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <conio.h>
|
|
|
|
|
|
int main(void)
|
|
{
|
|
printf("HELLO, WORLD!\n");
|
|
cgetc();
|
|
return 0;
|
|
}
|