Skip to content

Commit

Permalink
Little README.md change
Browse files Browse the repository at this point in the history
Signed-off-by: Ulysses Souza <[email protected]>
  • Loading branch information
ulyssessouza committed Mar 26, 2024
1 parent dc0c280 commit b26bfe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Description

Envlang is a simple language for defining environment variables. It is designed to be easy to read and write, and to be easy to use in a variety of contexts.
Envlang is a Go library that tries to treat environment variables as a proper language. By having a proper grammar, it can parse and evaluate expressions that are based on environment variables.
It's meant to be configurable through a simple API that lets you define your own Data Access Objects (DAOs) and use them to access the environment variables you need so they can serve as connectors to anything you need.

## Getting Started
Expand Down Expand Up @@ -51,7 +51,7 @@ func main() {
fmt.Printf("FOO=%q\n", *vars["FOO"])
fmt.Printf("BAR=%q\n", *vars["BAR"])
fmt.Printf("BAZ=%q\n", *vars["BAZ"])
fmt.Printf("EMPTY=%q\n", *vars["EMPTY"]) // Use %q to print empty strings
fmt.Printf("EMPTY=%q\n", *vars["EMPTY"])
fmt.Printf("UNSET=%q\n", vars["UNSET"])
fmt.Printf("VAR1=%q\n", *vars["VAR1"])
fmt.Printf("VAR2=%q\n", *vars["VAR2"])
Expand Down

0 comments on commit b26bfe6

Please sign in to comment.