PushNil pushes a nil value onto the stack. http://www.lua.org/manual/5.2/manual.html#lua_pushnil
()
| 1430 | // |
| 1431 | // http://www.lua.org/manual/5.2/manual.html#lua_pushnil |
| 1432 | func (l *State) PushNil() { l.apiPush(nil) } |
| 1433 | |
| 1434 | // PushNumber pushes a number onto the stack. |
| 1435 | // |