
{{alias}}( x )
    Tests if a 32-bit integer is odd.

    Parameters
    ----------
    x: integer
        Value to test.

    Returns
    -------
    bool: boolean
        Boolean indicating whether the value is an odd number.

    Examples
    --------
    > var bool = {{alias}}( 5 )
    true
    > bool = {{alias}}( -2 )
    false
    > bool = {{alias}}( 0 )
    false

    See Also
    --------

