algorithm-in-python/parser/PL0-compiler/test/txt/dowhile.txt
2019-03-15 16:37:02 +08:00

12 lines
120 B
Plaintext

var n=1;
begin
do
begin
print('%d',n);
n:=n+1;
end
while n<30;
print('zhqnb')
end
.