Difference between revisions of "H6105-D Hello World !!!"

From Hydrover
Jump to: navigation, search
(Creata pagina con "This is the source code in PAWN language of the Hello World example: <syntaxhighlight lang="pawn" line='line'> /*************************************************************...")
(No difference)

Revision as of 17:33, 13 June 2017

This is the source code in PAWN language of the Hello World example:

/***************************************************************
*
*		Hello World - example
*
*       program.p
*
***************************************************************/

// include the library for H6105-D
//
#include <hydlib_cp>

// main function
//
main()
{
	// clear display
	//
	dClear();
	
	// select system font
	//
	dFont( system5x7 );

	// place cursor
	//
	dCursor( 0, 0 );
	
	// print on display
	//
	dPrintf("Hello World !!!");
	
	// print on console
	//
	printf("Hello World !!!\n");
	
	// wait a couple of seconds
	//
	Sleep( 2000 );
	
	// program end
}