#include <3ds.h>
int main(int argc, char **argv)
{
newsInit();
const u16 title[] = { 0x0074, 0x0065, 0x0073, 0x0074, 0x0000 };
const u16 message[] = { 0x006D, 0x0065, 0x0073, 0x0073, 0x0061, 0x0067, 0x0065, 0x0000 };
Result res = NEWS_AddNotification(title, 4, message, 7, NULL, 0, false);
while ( aptMainLoop() )
{
hidScanInput();
if (res)
break;
if (hidKeysDown() & KEY_START)
break;
}
newsExit();
return 0;
}