Added pounddemo
This commit is contained in:
parent
a2cac87f81
commit
64c25f1486
@ -31,6 +31,12 @@ public class TestScanner {
|
||||
compileExpectFailure("/hi-newcomment2.tri");
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testPoundDemo() {
|
||||
compileExpectFailure("/pounddemo.tri");
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void compileExpectSuccess(String filename) {
|
||||
|
@ -1,3 +1,5 @@
|
||||
! this won't work until after some work in the practicals
|
||||
|
||||
# new comment
|
||||
|
||||
begin
|
||||
|
@ -1,8 +1,10 @@
|
||||
! this won't work until after some work in the practicals
|
||||
|
||||
# new comment
|
||||
|
||||
/*
|
||||
* another new comment
|
||||
*/
|
||||
$
|
||||
another new comment
|
||||
$
|
||||
|
||||
begin
|
||||
put('H'); put('i'); put('!')
|
||||
|
15
programs/pounddemo.tri
Normal file
15
programs/pounddemo.tri
Normal file
@ -0,0 +1,15 @@
|
||||
! 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
|
Reference in New Issue
Block a user