EnglishРусский  

   Array

   Buffer

   Clipboard

   COM/OLE

   Console

   CSV

   Dbf

   Files

   FTP

   Hash

   HTTP

   INI File

   Keyboard

   Math

   Memory

   Process

   Registry

   Socket

   String

   System

   Thread

   Tree

   XML

The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

stack.push

Add an item to a stack.

method uint stack.push

Return value

The pointer to the added item.


stack.push

The method adds a number to a stack.

method uint stack.push (
   uint val
)

Parameters

val Pushing uint or int number.

Return value

The added value is returned.


stack.push

The method adds a string to a stack. The stack must be described as stack of str.

method str stack.push (
   str val
)

Parameters

val Pushing string.

Return value

The added string is returned.

Related links

Source