I am BRAND new at coding, and don't understand. I know this has probably been asked, but I didn't know how to search this specifically. I am using NXC and a Bricx. How can I display "Hello World", play a sound, then display "Bye Cruel world" beneath the previous line? I am actually supposed to use a string message, but idk what that is.
This is what I have, but "Bye Cruel World" is not displaying:
task main()
{
TextOut(10, LCD_LINE4,"Hello World"); //display text at pos x=10, y=4
Wait(SEC_2); // wait 2000 ms, or 2 seconds
PlaySound(SOUND_LOW_BEEP);
Wait(SEC_2); // wait 2000 ms, or 2 seconds
TextOut(10, 16,"Bye Cruel World"); //display text at pos x=10, y=4
}