Blitz Command Overloading
Blitz3D Forums/Blitz3D Programming/Blitz Command Overloading
| ||
This is a neat little feature.Function Print(Text$,Text2$="")
Write(Text + Chr(32) + Text2 + Chr(32) + "I'm overloaded")
End Function
Print("Hello","World") |
| ||
| I would call that overriding, not overloading. The original Print is now inaccessible. |
| ||
| True |