proc main
string FirstStr, SecondStr, ThirdStr
FirstStr = "First"
SecondStr = "First"
ThirdStr = "First"
if not strcmp FirstStr (SecondStr, ThirdStr)
usermsg "The first string doesn't match both."
else
usermsg "The three strings are Identical."
endif
endproc
Jim