home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Joy Games
/
ShareGames.iso
/
doswin_2
/
1stcont
/
test.rpp
< prev
next >
Wrap
Text File
|
1996-10-14
|
432b
|
28 lines
var y: number;
var x: number;
var i: string;
var j: number;
y := 100;
x := 50;
i := "test";
println(i);
println("I am the man...");
if (y=101)
println("level 1");
if (x=51)
println("yep...");
endif;
if (x > 100)
println("greator...");
endif;
println("we are here...");
endif;
println("after the first if");
loop(j=1 to 2)
println(j);
loop (x=1 to 2)
println(x);
endl;
endl;