PushInteger pushes n onto the stack. http://www.lua.org/manual/5.2/manual.html#lua_pushinteger
(n int)
| 1440 | // |
| 1441 | // http://www.lua.org/manual/5.2/manual.html#lua_pushinteger |
| 1442 | func (l *State) PushInteger(n int) { l.apiPush(float64(n)) } |
| 1443 | |
| 1444 | // PushUnsigned pushes n onto the stack. |
| 1445 | // |