Tintware Documentation : Tint Programming Language : Tint Reference : Math Primitives : divisionSyntax#(/,%n) #(/,%n,%o,...) %n is a number. %o is a number to divide into %n. ... indicates that you can divide as many numbers as you want into %n. Examples#(/,10) 0 #(/,10,5) 2 #(/,400,5,2) 40 |