Alexey Shumkin
Alexey Shumkin
Sometimes a target class can have a public property of a custom enumeration type which is set from a string value from a command line. E.g. type TLogLevel = (llTrace,...
If rdebug runs (local) script which finishes normally it saves its history (with readline). But if script ends with an exception, history is not saved. That's annoying.
I run ```shell go run cmd/server/main.go ``` server starts, outputs ``` Running... ``` Then I run ```shell curl 'localhost:8081/set?key=a&value=1' ``` server outputs ``` Set: [a]1 ``` then I run ```...