# Example API

The code below was transformed from unit test source code

### adds numbers

    add(2, 3); // 5
    add(2, -3); // -1

Another feature

### concatenates

    add('foo', 'bar'); // 'foobar'

the end