mirror of
https://github.com/jeremysrand/ocanada.git
synced 2025-08-07 17:25:12 +00:00
21 lines
250 B
C
21 lines
250 B
C
/*
|
|
* main.c
|
|
* ocanada
|
|
*
|
|
* Created by Jeremy Rand on 2017-07-01.
|
|
* Copyright (c) 2017 Jeremy Rand. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <conio.h>
|
|
|
|
|
|
int main(void)
|
|
{
|
|
printf("HELLO, WORLD!\n");
|
|
cgetc();
|
|
return 0;
|
|
}
|