Tintware Documentation : Tint Programming Language : Tint Reference : Flow Control Primitives : equalSyntax#(=,%s,%t,%equal) #(=,%s,%t,%equal,%not-equal) %s and %t are two values to be compared. %equal will be returned if %s and %t are identical literal strings. %otherwise will be returned if %s and %t are not identical. Examples#(=,abc,abc,y,n) y #(=,abc,ab,y,n) n #(=,abc,def,y,n) n #(=,abc,def,y) |