Skip to content

Function Overloading

Brandon Barber edited this page Aug 20, 2017 · 1 revision

nymph allows you to overload functions.

For example:

void print(Rect *myRect) {
    ....
}

is not the same as

void print(Box *myBox) {
    ....
}
Clone this wiki locally