Tintware Documentation : Tint Programming Language : Tint Reference : Flow Control Primitives : alphabeticSyntax#(tint.alpha?,%s,%t,%alphabetic) #(tint.alpha?,%s,%t,%alphabetic,%otherwise) %s and %t are two values to be compared. %alphabetic will be returned if the %s and %t are in alphabetic order; otherwise, %otherwise will be returned. Examples#(tint.alpha?,a,b,y) y #(tint.alpha?,b,a,y) #(tint.alpha?,a,ab,y,n) y #(tint.alpha?,abc,ab,y,n) n |