A nplc package aims to bring the advantages from the dotenv to npl runtime!
Simply add a .env file and put your kv config into it like this:
.env file
# comment
KEY=VALUEin npl
print(ENV[KEY]) -- VALUEImportant, do NOT put comment to the tail of a kv config, like this:
KEY=VALUE # commentIn this way, you will get
print(ENV[KEY]) -- VALUE # comment