Source: tags/exports.js

define(function () {

    /**
     * A module that says hello!
     * @exports hello/world
     */
    var ns = {};

    /** Say hello. */
    ns.sayHello = function() {
        return 'Hello world';
    };

    return ns;
});
THIS IS A DEMO: All content was generated with examples taken from the JSDoc page.