Question: How to redefine standard operators

Hello, is there a way to give new properties to built-in operators, such as `+` or `*`? For example, I have my own type MYTYPE and procedure for adding MyAdd(a::MYTYPE, b::MYTYPE). Now, I would like to use: a + b instead of MyAdd(a,b). Is it possible? Thank you. Karel
Please Wait...