PushNumber pushes a number onto the stack. http://www.lua.org/manual/5.2/manual.html#lua_pushnumber
(n float64)
| 1435 | // |
| 1436 | // http://www.lua.org/manual/5.2/manual.html#lua_pushnumber |
| 1437 | func (l *State) PushNumber(n float64) { l.apiPush(n) } |
| 1438 | |
| 1439 | // PushInteger pushes n onto the stack. |
| 1440 | // |