99 Bottles of Beer/Pascal: Difference between revisions

m
→‎{{header|Pascal}}: oops, forgot a writeln at the end of the verse
(→‎{{header|Pascal}}: Modified so that it's a stand-alone program, and eliminated "Format" since not all Pascals support that. Simplified code a little bit.)
m (→‎{{header|Pascal}}: oops, forgot a writeln at the end of the verse)
Line 117:
else
writeln(i - 1, ' bottles of beer on the wall')
writeln;
end;
end. </lang>