/* Haus��bung */ SAY "Gebe eine Zahl von 1 bis 10 ein: " PULL a SAY "Gebe nun eine Zahl von 10 bis 20 ein: " PULL b SAY "Gebe eine Zahl von 100 bis 1000 ein: " PULL c tmpColl = .queue ~new tmpColl ~~ queue(a) ~~queue(b) ~~queue(c) SAY tmpColl~string":" DO i OVER tmpColl SAY "["i"]" END