SAY "This will be a list of participants at your conference. How many guest will come?" PULL numberofparticipants x = numberofparticipants participants = .list ~new SAY DO i=1 TO numberofparticipants SAY "Who is the "i". Participant?" PARSE PULL name participants~insert(name) SAY "The name is saved!" SAY END SAY "Your participants are: " DO n OVER participants SAY n END SAY SAY "Do you want to add more participants? Yes/No?" PULL reply SAY IF reply = "YES" THEN DO SAY "Who is the next Participant?" PARSE PULL name participants~append(name) SAY "The name is saved!" SAY END SAY "The list has "participants~items "participants. And those are: " DO n OVER participants SAY n END