diff --git a/content/roadmaps/109-golang/content/102-go-building-clis/readme.md b/content/roadmaps/109-golang/content/102-go-building-clis/readme.md index 91af14454..2b92bb43e 100644 --- a/content/roadmaps/109-golang/content/102-go-building-clis/readme.md +++ b/content/roadmaps/109-golang/content/102-go-building-clis/readme.md @@ -1 +1,8 @@ -# Go building clis \ No newline at end of file +# Building CLI Applications + +Command line interfaces (CLIs), unlike graphical user interfaces (GUIs), are text-only. Cloud and infrastructure applications are primarily CLI-based due to their easy automation and remote capabilities. + +Go applications are built into a single self contained binary making installing Go applications trivial; specifically, programs written in Go run on any system without requiring any existing libraries, runtimes, or dependencies. And programs written in Go have an immediate startup time—similar to C or C++ but unobtainable with other programming languages. + +Free Content +Command-line Interfaces (CLIs) \ No newline at end of file