This is test entry
whatever this is code
hello
and this is some code:
x = [x for x in x]
for x in x:
print(x)
sys.exit(1)- this is list
- another list
- another
- hello
- yes
Here is some math:
Have fun bro.
This is test entry
whatever this is code
hello
and this is some code:
x = [x for x in x]
for x in x:
print(x)
sys.exit(1)Here is some math:
Have fun bro.
| local cjson = require("cjson") | |
| local method = ngx.req.get_method() | |
| if method == 'POST' then | |
| ngx.req.read_body() | |
| local args = ngx.req.get_post_args() | |
| args['json']= cjson.decode(args['json']) | |
| ngx.say(cjson.encode(args)) | |
| else | |
| ngx.status = ngx.HTTP_NOT_ALLOWED | |
| ngx.say(string.format('{"status": %d, "content": "Method Not Allowed: %s"}', ngx.HTTP_NOT_ALLOWED, method)) | |
| end |