/*---------------------------------------------------------------------------* Project: Sample demo File: sample.c Programmers: TOKUNAGA, Yasuhiro HIRATSU Daisuke Copyright (C) 2005-2006 Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Log: sample.c,v $ Revision 1.2 02/02/2006 01:50:16 yasuh-to Modified Copyright message Revision 1.1.1.1 2005/12/29 06:53:27 hiratsu Initial import. Revision 1.4 12/29/2005 00:58:59 hiratsu void main() -> int main() *---------------------------------------------------------------------------*/ #include "sample.h" #include int main( void ) { OSReport("Hello, world!\n"); return 0; }