// Możesz dodawać do siebie zmiene typu  string a takze dodawać liczby do zmiennych typu string.
// Śpiewaj nieprzerwanie używają kontatenacji stringów :
// X potions of health on the wall!
// X potions of health!
// Take Y down, pass it around!
// X-Y potions of health on the wall.

var potionsOnTheWall = 10;
var numToTakeDown = 1;
while(true) {
    hero.say(potionsOnTheWall + " potions of health on the wall!");
    // Śpiewaj następną linię :


    hero.say(potionsOnTheWall + " potions of health!");
    // Śpiewaj następną linię :
    hero.say("Take " + numToTakeDown + " down, pass it around!");
    potionsOnTheWall -= numToTakeDown;
    // Śpiewaj ostatnią linię:
    hero.say(potionsOnTheWall + " potions of health on the wall!");
}

 

 

 

 

 

 

 

 

 

Projektuję strony www Lublin na Joomla i WordPress