10 lines
160 B
Text
10 lines
160 B
Text
|
|
PROC Main()
|
||
|
|
DO
|
||
|
|
IF Rand(0)=10 THEN
|
||
|
|
PrintE("Terminate program by Break() procedure")
|
||
|
|
Break()
|
||
|
|
FI
|
||
|
|
OD
|
||
|
|
PrintE("This is a dead code")
|
||
|
|
RETURN
|