lua-resty-repl icon indicating copy to clipboard operation
lua-resty-repl copied to clipboard

make it possible to type multi-line code

Open saks opened this issue 8 years ago • 1 comments

saks avatar Feb 03 '17 08:02 saks

you can place repl.start() at multi lines. just like this

content_by_lua_block { local repl = require('resty.repl') repl.start() ngx.log(ngx.NOTICE, 'repl pass one') repl.start() ngx.log(ngx.NOTICE, 'repl pass again') }

then use repl.stop() to go into next point.

kwanhur avatar Jun 27 '17 08:06 kwanhur