@sub()

This subtracts one number from another. It takes two numeric strings
and returns their difference.

Usage:
@sub( "10", "5" )

The result is "5".

@sub( "5", "10" )

The result is "-5".