------------------------
-- KLODLIBRARY V0.0.1 --
------------------------

About:
This is a simple library that provides
extra content and functionality to python.
for now there is just extra math functions.

functions:

clamp(number, min=1, max=10) -- clamps number to min and max bounds.
abs(number) -- turns number to positive if its negative.
neg(number) -- turns number to negative if its positive.
opposite(number) -- if number is positive, it turns into negative and vice versa.