Glad the confusion is settled!
Sorry that it was worded so poorly! 

I was interested to see how much of a slowdown was introduced by using oop 
style functions. 

Surprisingly the slowdown was only around 15% when the functions were declared 
in a similar style to below. 


Type atype 
  Bar::function 
  Function atype()
    This = new() 
    Function foo()  
     ... 
    End 
    Function foo(in::int) 
     ... 
    End
    This.bar = foo
    Return This
  End
End

Reply via email to