Source: index.js

/**
 * Add two numbers together
 */
export function add(a, b) {
    return a + b;
}
export const SECRET_STRING = 'shhhhh!';
export { default as Car } from './car';
export { Unicycle, Bike } from './cycles';