Changes

Jump to: navigation, search

H6105-D Hello World !!!

708 bytes added, 17:33, 13 June 2017
Creata pagina con "This is the source code in PAWN language of the Hello World example: <syntaxhighlight lang="pawn" line='line'> /*************************************************************..."
This is the source code in PAWN language of the Hello World example:

<syntaxhighlight lang="pawn" line='line'>

/***************************************************************
*
* 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
}

</syntaxhighlight>

Navigation menu