Preview:
int square(int x) { return x * x; }
int rectangle(int x, int y) { return x * y; }
AreaCalculatorDelegate rect = rectangle;
AreaCalculatorDelegate sqr = square;
int i = rect(1, 2);
int j = sqr(2);
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter