fpc/tests/webtbs/tw2789.pp
2003-11-12 15:51:19 +00:00

17 lines
162 B
ObjectPascal

{ %opt=-Sen }
Var B:Longint;
Procedure Stuff;
Var I:Longint;
Begin
Case B Of
0:For I:=1 To 100 Do WriteLn;
End;
End;
Begin
B:=0;
Stuff;
End.