blob: a696c5eb52a74d6e0d282159aa691ce9b974811d [file] [log] [blame]
#include <xdc/runtime/Log.h>
#include "Msgs.h"
/*
* ======== main ========
*/
Int main(Int argc, String argv[])
{
/* say hello */
Log_write0(Msgs_HELLO);
/* and goodbye */
Log_write1(Msgs_GOODBYE, 0);
return (0);
}