Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Fast Library For Clipper 3.02 Reference - <b>stackpush()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
    StackPush()

         Introduces an element into the stack

    Syntax:

         StackPush( aStack, xValue ) -> Nil

         aStack : The created stack with StackNew()
         xValue : The new value to introduce into the stack

    Description:

         Introduces a new element into the stack and places it as stack
         head.

    Return:

         Nothing.

    Example:

         aStack := StackNew ()
         StackPush ( aStack, "hello world" )
         StackPush ( aStack, "bye" )
         ? StackHead( aStack )            // "bye"

See Also: StackHead() StackNew() StackPop() StackEmpty()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson