Home

News

International

Screen Shots

Documentation

Download

Build

License

Credits

Contact

SourceForge Project

Tintware Documentation : Tint Programming Language : Tint Reference : Math Primitives : subtraction

Syntax

#(-,%n)
#(-,%n,%o,...)

%n is a number. %o is a number to subtract from %n. ... indicates that you can subtract as many numbers as you want from %n.

Examples

#(-,10)
-10
#(-,-10)
10
#(-,10,5)
5
#(-,10,5,4)
1