1 /*---------------------------------------------------------------------------*
2 Project: Sample demo
3 File: sample.c
4 Programmers: TOKUNAGA, Yasuhiro
5 HIRATSU Daisuke
6
7 Copyright (C) 2005-2006 Nintendo. All rights reserved.
8
9 These coded instructions, statements, and computer programs contain
10 proprietary information of Nintendo of America Inc. and/or Nintendo
11 Company Ltd., and are protected by Federal copyright law. They may
12 not be disclosed to third parties or copied or duplicated in any form,
13 in whole or in part, without the prior written consent of Nintendo.
14
15 $Log: sample.c,v $
16 Revision 1.2 02/02/2006 01:50:16 yasuh-to
17 Modified Copyright message
18
19 Revision 1.1.1.1 2005/12/29 06:53:27 hiratsu
20 Initial import.
21
22 Revision 1.4 12/29/2005 00:58:59 hiratsu
23 void main() -> int main()
24 *---------------------------------------------------------------------------*/
25 #include "sample.h"
26
27 #include <revolution.h>
28
main(void)29 int main( void )
30 {
31 OSReport("Hello, world!\n");
32 return 0;
33 }
34