Is it possible to define own operators?

BlitzMax Forums/BlitzMax Beginners Area/Is it possible to define own operators?

Polan(Posted 2012) [#1]
Some laungage like ada and I think c let you do something like this:
procedure/method "+"(arg1,arg2)
Is it possible to do something like that in blitz?


col(Posted 2012) [#2]
Unfortunately not in the same way.

There are a hundred alternative ways to do something similar, but being as you usually have to code those yourself in the other languages anyway...

This is one of many ways for something similar




Polan(Posted 2012) [#3]
Thanks for the answer.