Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

Tintware Documentation : Tint Programming Language : Tint Reference : Flow Control Primitives : alphabetic

Syntax

#(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