algorithm-in-python/parser/PL0-compiler/test/txt/dowhile.txt

12 lines
120 B
Plaintext
Raw Normal View History

2019-03-15 16:37:02 +08:00
var n=1;
begin
do
begin
print('%d',n);
n:=n+1;
end
while n<30;
print('zhqnb')
end
.