Show page source of サンプルプログラム集 #38608

----
== Hello world!
''Hello world! ''と描画し続けます。
{{{ code c
#include "dxlibp.h"
PSP_MODULE_INFO("DXP hello world!", 0, 1, 1);
PSP_MAIN_THREAD_ATTR(THREAD_ATTR_USER);
int main()
{
    if(DxLib_Init() == -1)return -1;
    while(ProcessMessage() != -1)
    {
        ClearDrawScreen();
        printfDx("hello world!\n");
        ScreenFlip();
    }
    DxLib_End();
    return 0;
}
}}}