|
#Declarations
var thumbstuck : String = 'junk';
var backside : String = 'junk';
var workdone : Boolean;
var forumpost : Boolean;
#Procedures
Procedure workDone(backside:String,thumbstuck:String);
begin
if (!(inString(backside,thumbstuck))){
workdone := true;
forumpost := false;
}else{
forumpost := true;
workdone := false;
}
end;
In any language, it comes out the same.
etLux
|