tarantool> strict = require('strict') --- ... tarantool> strict.on() --- ... tarantool> a = b -- strict mode is on so this will cause an error --- - error: ... variable ''b'' is not declared' ... tarantool> strict.off() --- ... tarantool> a = b -- strict mode is off so this will not cause an error --- ...
---
...
tarantool> strict.on()
---
...
tarantool> a = b -- strict mode is on so this will cause an error
---
- error: ... variable ''b'' is not declared'
...
tarantool> strict.off()
---
...
tarantool> a = b -- strict mode is off so this will not cause an error
---
...