Page 1 of 1
New Program that I have created

Posted:
Mon Mar 28, 2011 10:33 am
by Hot Trout
10 IT'S THE FINAL COUNTDOWN
20 FOR C = 1 TO 2
30 DA-NA-NAAAA-NAAAA DA-NA-NA-NA-NAAAA
40 DA-NA-NAAAA-NAAAA DA-NA-NA-NA-NA-NA-NAAAAA
50 NEXT C
60 NA-NA-NAAAA
70 NA-NA NA-NA-NA-NA-NAAAA NAAA-NAAAAAAAAAAA
80 GOTO 10
Re: New Program that I have created

Posted:
Mon Mar 28, 2011 7:37 pm
by Guest
Ya, im lost on this one
Re: New Program that I have created

Posted:
Mon Mar 28, 2011 7:43 pm
by te_lanus
Reminds me of the programs I wrote/copied back in the days of Basic. Spending the whole afternoon typing in the listing from a book just to play maybe 10 minutes, and not being mad at spending the whole afternoon especially after finding out how to save the program
Re: New Program that I have created

Posted:
Mon Mar 28, 2011 7:48 pm
by Guest
Hey, if I turn my head this way I can read it now!
Re: New Program that I have created

Posted:
Tue Mar 29, 2011 12:15 pm
by Hot Trout
Lets see who gets the joke first, it might help to watch the song, then read through the program.
Re: New Program that I have created

Posted:
Fri Apr 08, 2011 10:46 pm
by JAHGoVeg
i give up.

Re: New Program that I have created

Posted:
Fri Sep 02, 2011 12:48 pm
by stinow
Hahaha,
this is epic

Good job

Oh and sorry for the!:

Re: New Program that I have created

Posted:
Fri Sep 02, 2011 1:04 pm
by stinow
Javascript, little more advanced version..
This one suits all basic
Pop
songs.
- Code: Select all
function play_PopSong {
PopSections = 4;
play('intro');
for (x=0; x < PopSections; x++)
{
if (mod(PopSections,4)==0) /* if song containts a multiple of 4 verses */
{
if (mod(x,3)==0) /* if the current iteration is at a multiple of 3 */
{
play('bridge');
}
}
play('verse');
}
play('outro');
}
