helloworld.js

This is a dead-simple example for  jsdog 

Author:  Scott Elcomb <psema4-at-gmail-dot-com> (http://www.psema4.com/)

Version:  0.0.1

HelloWorld - function HelloWorld() Constructor


A dummy constructor to build a brain dead object

HelloWorld.bar - HelloWorld.prototype.bar = function(baz)


A sample method for our object

It does nothing but return true


Parameters:
  1. mixed  baz  A dummy param

Returns:
  1. boolean  Always returns true

Generated by JSDog in about 0.003 seconds

Hello World Example

    /** ++*[black[helloworld.js]*++
     *
     * This is a _dead-simple_ !example! for [black|lightgray[ jsdog ]
     *
     * @author Scott Elcomb <psema4@gmail.com> (http://www.psema4.com/)
     * @version 0.0.1
     */
    
    /**
     * A dummy constructor to build a brain dead object
     * @constructor
     */
    function HelloWorld() {
    }
    
    /**
     * A sample method for our object
     *
     * It does nothing but return true
     *
     * @method HelloWorld.bar
     * @param {mixed} baz A dummy param
     * @returns {boolean} Always returns true
     */
    HelloWorld.prototype.bar = function(baz) {
        return true;
    }