Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

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

Syntax

#(>,%n,%o,%greater)
#(>,%n,%o,%greater,%otherwise)

%n and %o are two numbers to be compared; if either of these values are not numbers it is an error. %greater will be returned if %n is greater than %o. %otherwise will be returned if %n is not greater than %o

Examples

#(>,20,10,y,n)
y
#(>,10,20,y,n)
n
#(>,10,20,y)

#(>,10,10,y,n)
n