Data update
This commit is contained in:
parent
29a5eea0d4
commit
5c1bb7bfa9
2011 changed files with 35081 additions and 3229 deletions
|
|
@ -0,0 +1,10 @@
|
|||
begin
|
||||
for var i:=99 to 1 step -1 do
|
||||
begin
|
||||
Println(i,'bottles of beer on the wall');
|
||||
Println(i,'bottles of beer');
|
||||
Println('Take one down, pass it around');
|
||||
Println(i-1,'bottles of beer on the wall');
|
||||
Println
|
||||
end;
|
||||
end.
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
begin
|
||||
for var i:=99 to 1 step -1 do
|
||||
begin
|
||||
writeLn($'{i} bottles of beer on the wall');
|
||||
writeLn($'{i} bottles of beer');
|
||||
writeLn($'Take one down, pass it around');
|
||||
writeLn($'{i-1}bottles of beer on the wall');
|
||||
writeLn
|
||||
end;
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue