Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    print add(11, 12), "\n"; # prints 23
    print add(10, 11, 12), "\n"; # prints 33
    
  2. or download this
    23
    33
    
  3. or download this
    use strict;
    use warnings;
    ...
    struct Bar {
        add( int a, int b, int c ) { return a + b + c }
    };