From 17433d67dd8f22359a770d4563861fe03afa1451 Mon Sep 17 00:00:00 2001 From: Haricharan Jaka <85234103+charanjaka@users.noreply.github.com> Date: Mon, 4 Apr 2022 00:21:12 +0530 Subject: [PATCH] Removed an extra 'even though' --- Days/day07.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Days/day07.md b/Days/day07.md index 8253bf2..701441f 100644 --- a/Days/day07.md +++ b/Days/day07.md @@ -29,7 +29,7 @@ As I have also mentioned some of the most known DevOps tools and platforms are w What are some of the characteristics of Go that make it great for DevOps? ## Build and Deployment of Go Programs -An advantage of using a language like Python that is interpreted in a DevOps role is that you don’t need to compile a python program before running it. Especially for smaller automation tasks, you don’t want to be slowed down by a build process that requires compilation even though, even though Go is a compiled programming language, **Go compiles directly into machine code**. Go is known also for fast compilation times. +An advantage of using a language like Python that is interpreted in a DevOps role is that you don’t need to compile a python program before running it. Especially for smaller automation tasks, you don’t want to be slowed down by a build process that requires compilation even though, Go is a compiled programming language, **Go compiles directly into machine code**. Go is known also for fast compilation times. ## Go vs Python for DevOps