{NeoBook Function}
Version=5.80
Language=VBScript
Param=[%1]|Text|firstString
Param=[%2]|Text|secondString
Param=[%3]|Variable|result
{End}
intCompare = StrComp("[%1]","[%2]",0)
' MsgBox "[%1]" & " - " & "[%2]" & " - " & intCompare
If intCompare = -1 Then
   compareResult = "isLessThan"
End If
If intCompare = 0 Then
   compareResult = "isEqual"
End If
If intCompare = 1 Then
   compareResult = "isGreaterThan"
End If
' MsgBox compareResult

publication.nbSetVar "[%3]", compareResult
