repeat until

This commit is contained in:
Sandy Brownlee 2022-09-09 16:33:13 +01:00
parent 64c25f1486
commit c3c2076d9e
3 changed files with 20 additions and 15 deletions

View File

@ -37,6 +37,12 @@ public class TestScanner {
compileExpectFailure("/pounddemo.tri");
}
@Test
public void testRepeatUntil() {
compileExpectFailure("/repeatuntil.tri");
}
private void compileExpectSuccess(String filename) {

View File

@ -1,15 +0,0 @@
! this won't work until after some work in the practicals
let
var a : Integer;
var b : Integer
in
begin
a := 1;
b := 2;
putint(a)
putint(b)
putint(£a)
putint(£b)
end

14
programs/repeatuntil.tri Normal file
View File

@ -0,0 +1,14 @@
! this won't work until after some lab work
let
var a : Integer
in
begin
a := 0;
repeat
begin
put('a');
a := a + 1;
end
until a < 5
end