void GB.Push ( int nval , ... )
Push values on the interpreter stack.
nval is the number of values you want to push.
The values are passed as additional arguments this way : the type of the value, followed by one or two data representing the value, this being repeated for each value.
Example :
GB.Push(3, GB_BOOLEAN, 1, GB_INTEGER, 1972, GB_FLOAT, 3.1416, GB_STRING, "Gambas", 6 );