7 lines
136 B
Text
7 lines
136 B
Text
Func Compare =
|
|
?a;
|
|
?b;
|
|
if a=b then !'Equal' fi;
|
|
if a<b then !'Less than' fi;
|
|
if a>b then !'Greater than' fi;
|
|
.;
|